我正在尝试脱机安装python包。我已经从PYPI下载了,当我尝试安装时,我得到一个错误"ModuleNotFoundError: No module named 'setuptools'“。所以我从PYPI下载了" setuptools“并尝试安装,但是setuptools中的setup.py已经有了"import setuptools”。所以,又是一个错误。请帮助解决此问题。 如何脱机安装安装工具? 谢谢你
我在这里读过一堆关于setuptools的帖子。很多人似乎不太喜欢它。
但是我需要安装MySQL-python-1.2.3。当我这样做的时候,我得到了这个错误:
MySQL-python-1.2.3 X$ python setup.py cleanTraceback (most recent call last):
File "setup.py", line 5, in <module>
from setuptools import setup, Extension
ImportError: No module named se
我用的是conda 4.4.9。我已经安装了TensorFlow,我也想安装Keras。
然后我尝试激活我的虚拟环境并安装Keras,如下所示:
activate tensorflow_env_001
pip install --ignore-installed --upgrade keras
然后,我得到以下错误消息:
tensorflow 1.9.0 has requirement setuptools<=39.1.0, but you'll have setuptools 39.2.0 which is incompatible
这意味着我的setuptools太新了。实际
我正在尝试使用pip安装python库,它告诉我它需要setuptools,所以我尝试安装setuptools,尽管一切看起来都成功了,但它没有意识到它已经安装了。知道我可能在这里错过了什么吗?
$ sudo pip install gmusicapi
Downloading/unpacking gmusicapi
Downloading gmusicapi-7.0.0.tar.gz (147kB): 147kB downloaded
Cleaning up...
setuptools must be installed to install from a source distribut
我正在尝试在我的Unix帐户上运行Tweepy client for Twitter。每当我尝试使用以下命令运行Tweepy的安装程序时:
python setup.py
我得到了这个错误:
Traceback (most recent call last):
File "setup.py", line 3, in ?
from setuptools import setup, find_packages
ImportError: No module named setuptools
现在我在一些论坛上搜索,发现我需要添加安装工具文件。我找到的文件
setuptools-0.6
我已经在安装了pip的苹果电脑上安装了pip和setuptools。当我使用以下命令安装Ipython时:sudo install ipython,错误如下:。我尝试了以下命令:sudo -H pip install ipython --ignore-installed setuptools-1.1.6,也出现了错误:Could not find a version that satisfies the requirement setuptools-1.1.6 (from versions: ) No matching distribution found for setuptools-1.1
我一直在尝试安装pipenv-2018.11.26 (sudo pip3 install pipenv-2018.11.26.tar.gz),同时处理它的输出是 Could not find a version that satisfies the requirement setuptools (from versions: )
No matching distribution found for setuptools 我确实有setuptools (setuptools<=40.6.2)。我尝试了其他版本的setuptools (41.2.0、39.1.0),但都没有用。上面的错误没
当我用PyCharm编写一段简单的代码时:
import setuptools
a = 10 ## This line is of no use
我在执行它的时候没有得到任何错误。但是如果我尝试从终端导入setuptools,我得到一个错误,没有名为setuptools的模块。我在终端上写的是:
python3 -c "import setuptools"
我已经为Python2.7安装了安装工具,我也尝试了2.7版本的安装工具,它可以在终端和PyCharm两个地方运行。
我正在尝试设置我的远程服务器,并让Anisble安装所需的软件包。在我的playbook.yml中,除了尝试只在一台远程服务器上安装requirments.txt之外,一切都正常工作。它给出了以下错误:
FAILED! => {"changed": false, "msg": "No setuptools found in remote host, please install it first."}
是的,我do在远程主机上安装了setuptools。
# pip3 show setuptools
Name: setuptools
Ver
我正在尝试使用pip安装gensim,但是我得到了:
"Could not import setuptools which is required to install from a source distribution.
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/pip/req/req_install.py", line 377, in setup_py
import setuptools # noqa
File "/Library/Pyth
这部分是一个问题,部分是我自己在遇到这个错误时发现的问题:
(cdbak)USER-MBP-2:.virtualenvs <YOUR_USER_NAME>$ pip
Traceback (most recent call last):
File "/Users/<YOUR_USER_NAME>/.virtualenvs/cdbak/bin/pip", line 6, in <module>
from pkg_resources import load_entry_point
ImportError: No module na
描述了bug
我在一台客户端机器上工作,在那里我无法访问外部服务器。因此,我必须从Python下载包并解压缩zip文件,并且我必须通过在命令提示符中传递命令python setup.py install在我的计算机中安装这些包。前两个包(Selenium和urllib3)在我的机器上运行良好,安装也很好。
我尝试过安装Pytest Pypi,但这需要setuptools-scm。因此,我下载了setuptools-scm包,并试图安装它,但我得到了一个错误的ValueError: Zip does not support timestamps before 1980。
期望行为
应该安装Set
我有一个非常奇怪的问题与新的ubuntu 17.04当我试图安装的东西从pip我无法做到…这是错误:
sudo pip install psutil
The directory '/home/metu/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sud