简体   繁体   English

如何在python(vs代码)中安装任何模块的先前版本?

[英]How can I install previous versions of any module in python (vs code)?

I was installing scikit learn and tensorflow but I was having an error:- "Could not find a version that satisfies your requirements."我正在安装 scikit learn 和 tensorflow,但出现错误:-“找不到满足您要求的版本。”

I want to do machine learning and therefore I need these modules .我想做机器学习,因此我需要这些模块。

Pls help me out.请帮帮我。

To resolve this issue, use pip install sckit-learn==<your-version> and pip install tensorflow==<your-version> or use pip install sckit-learn and pip install tensorflow to install their latest versions.要解决此问题,请使用pip install sckit-learn==<your-version>pip install tensorflow==<your-version>或使用pip install sckit-learnpip install tensorflow安装最新版本。 Replace with a version like.替换为类似的版本。 If it the installation fails that version of the package does not exist.如果安装失败,则该版本的软件包不存在。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在VS代码中安装python模块 - How to install module of python in VS code 我应该如何构建我的 Python 模块,以便将来可以随时运行旧版本? - How should I structure my Python module so that I can run older versions at any time in the future? 如何在VS代码中找到新安装的python模块? - How can I find newly installed python module in VS code? 在Linux中,如何为不同版本的Python编译和安装代码? - In Linux, how do I compile and install code for different versions of Python? 如何在单个 Conda 环境中安装两个版本的 Python? - How can I install two versions of Python on a single Conda Environment? 如何在 Python 中安装 dbconnect 模块? - How can I install the dbconnect module in Python? 如何在VS Code和Ubuntu中使用Keras模块运行python代码? - How can I run a python code with Keras module in VS Code and Ubuntu? 安装两个版本的Python模块 - Install two versions of a Python module 如何使用自制软件在 macOS 中安装以前版本的 Python 3? - How can I install a previous version of Python 3 in macOS using homebrew? 如何找出与我的代码兼容的所有以前的python版本 - How do I find out all previous versions of python with which my code is compatible
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM