Outline 在通过 setup.py 安装python模块时,遇到了以下报错: # 执行 python setup.py install # 报错: error: [WinError 3] 系统找不到指定的路径.: 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\PlatformSDK\\lib 错误因素很多,在这里排除依赖原因: 排除:pip install XXXXXXXXXXXXXX.whl Anaconda环境配…
python setup.py install 报错信息 [root@VM_25_28_centos psutil-2.0.0]# python setup.py install running install running build running build_py creating build creating build/lib.linux-x86_64-2.6 creating build/lib.linux-x86_64-2.6/psutil copying psutil/_pso…
错误信息: [root@wangjq networking-mirror]# python setup.py install /usr/lib64/python2./distutils/dist.py:: UserWarning: Unknown distribution option: 'long_description_content_type' warnings.warn(msg) /usr/lib64/python2./distutils/dist.py:: UserWarning: U…
学习光荣之路python课程时,使用python setup.py install安装其他模块时,第一次安装某模块成功了.安装另一模块却报错ImportError: No module named setuptools.此前一直有过类似安装但没有报错. 解决方法:https://pypi.python.org/pypi/setuptools#windows-simplified下载 ez_setup.py, 进入该文件所在目录, 命令ez_setup.py 安装后恢复正常. python交互模式…
错误起因: 第一次安python3.72的时候,直接去官网下了压缩包,解压后也没有exe文件.环境也是手动配置,在之后安装Pycharm的时候,系统找不到解释器,手动加上. 错误经过: 等写程序用到import以后发现自己缺少包,原本在pycharm里自动安装的pip和setuptools都没有,就像图中这样. 随后自己去官网下了pip,但在安装时报错,缺少setuptools 截图没了,找个网上的,就是类似这种情况. 尝试搜索,用python setup.py install //安装 仍然以…
按照网上教程,将cmd的目录定位到解压缩文件夹地址,然后 >>python setup.py install ( Window下不能直接解压tar.giz文件,可以使用7z解压软件提取解压再在CMD下打开 ) 但是在IDLE中import bs4时,会出现: Traceback (most recent call last):  File "<pyshell#3>", line 1, in <module>    import bs4  File &…
easy_install 安装 卸载命令 easy_install -m package-name setup.py安装 帮助你纪录安装细节方便你卸载 python setup.py install --record log 这时所有的安装细节都写到 log 里了想要卸载的时候通过以下命令 cat log | xagrs rm -rf 就可以干净卸载了…
今天同步数据时出现这个错误: 解决方法: 1.先下载mysql-python 支持1.2.3-2.7版本 MySQL-python 1.2.3 for Windows and Python 2.7, 32bit and 64bit versions - See more at: http://www.codegood.com/archives/129#sthash.TSWNIUOS.dpuf http://www.codegood.com/archives/129 2.安装到python安装目录…
Python 2.7 会搜索 Visual Studio 2008. 如果你电脑上没有这个版本的话,比如只有: 1.Visual Studio 2010,在cmd里面执行:SET VS90COMNTOOLS=%VS100COMNTOOLS%2. Visual Studio 2012 的话:SET VS90COMNTOOLS=%VS110COMNTOOLS%以此类推:3. Visual Studio 2013 的话:SET VS90COMNTOOLS=%VS120COMNTOOLS%4. Visu…
将cpp_extension.py文件中的 原始的是   compiler_info.decode() try: if sys.platform.startswith('linux'): minimum_required_version = MINIMUM_GCC_VERSION version = subprocess.check_output([compiler, '-dumpfullversion', '-dumpversion']) version = version.decode().…
由于curl证书太老,所以无法找到一些对应的版本. 如下更新证书即可: curl http://curl.haxx.se/ca/cacert.pem > /etc/pki/tls/certs/ca-bundle.crt/ca-bundle.crt…
RuntimeError: Model class app_anme.models.xxx doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS. 将app加入settings的INSTALLED_APPS 中…
安装pymongo-2.3.tar.gz,执行命令python setup.py install报错: HTTP Error 403: SSL is required 分析原因:安装需要下载这个distribute-0.6.28.tar.gz依赖包失败,下载要求SSL. 解决办法: ①手动下载distribute-0.6.28.tar.gz,并且放到 /root/pymongo-2.3目录下 下载地址:http://pypi.python.org/packages/source/d/distri…
mlflow是一个开源机器学习平台 最近需要使用一个它的最新版本,但是这个最新版本没有git包,无法通过pip install安装,需要打包安装. 打包完之后在项目的dist文件夹中有打包后的压缩包,拷贝出来,解压缩,进入,python setup.py install即可完成安装.但是setup.py安装的缺点是有些依赖无法自动安装,需要手动安装一些依赖. 我安装的一些依赖: sudo pip3 install websocket sudo pip3 install websocket-cli…
python 运行python manege.py runserver时报错:“no module named djangorestframework” 的解决方案 importerror:no module named djangorestframework Django REST framework is a powerful and flexible toolkit that makes it easy to build Web APIs. Some reasons you might w…
I have installed a python package with python setup.py install How do I uninstall it? ================================================================= You need to remove all files manually, and also undo any other stuff that installation did manuall…
问题 Mac 下通过 pip 安装 icu 失败. 解决办法及原因 问题的原因是因为icu库中的某一行代码找不到一个文件,获取不到ICU_VERSION的值. # Install icu brew install icu4c # check newest version ls /usr/local/Cellar/icu4c/ # Edit pyicu installer to work git clone https://github.com/ovalhub/pyicu.git # edit s…
本文主要用于汇总在python开发过程中遇到的各种环境.工具相关问题,便于后续遇到相关问题,及时搞定,持续更新. 一.安装pip失败,具体如下: 错误信息: python setup.py install Traceback (most recent call last): File “setup.py”, line 6, in from setuptools import setup, find_packages ImportError: No module named setuptools…
原因 执行命令 python manage.py makemigrations 报错 TypeError: __init__() missing 1 required positional argument: 'on_delete' 定义外键报错 解决办法 字段名称 = models.ForeignKey('表名', on_delete=models.CASCADE) on_delete=models.CASCADE 在 django2.0之前有默认值,之后版本就需要显式指定…
1.install python setup.py install --record files.txt 2. uninstall 删除这些文件 cat files.txt | xargs rm -rf…
pip install http://download.pytorch.org/whl/cu80/torch-0.2.0.post3-cp27-cp27mu-manylinux1_x86_64.whl pip install torchvision 今天在按照上面的命令安装pytorch的时候,首先将whl文件下载到本地,然后直接pip install该文件,再安装的时候报错,TypeError: unsupported operand type(s) for -=: 'Retry' and '…
公司业务开发,用python开发网站;需要使用模块MySQLdb. 我直接pip install MySQLdb,当然不成功了,模块名字因该是mysql-python pip install mysql-python 最后报错: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-enRreC/mysql-python/ 原因是缺少一个依赖:libmysqld-dev sudo…
python装的3.6 64位,使用命令pip install pyautogui 或者pip install -U pyautogui 都失败了 报错如下: Command "python setup.py egg_info" failed with error code 1 in C:\Users\Administrator\AppData\Local\Temp\pip-install-svhtepho\pygetwindow\ 如图: 解决方案: 还未找到解决方案,请看到的亲,指…
安装locust遇到点问题折腾了好一会儿,记录一下. 使用命令pip install locustio提示python setup.py egg_info  failed with error code 1,同时建议升级pip,但是pip升级了也还是报同样的错误. 后面突然想起我的python是去年安装的,到官网下载了最新的python版本重新安装.再pip install locustio 安装成功.…
ERROR: Command errored : command: /usr/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-pS3uLm/mysql-python/setup.py'"'"'; __file__='"'"'/tmp/pip-install-pS3uLm/mysql-python/setup.py'"…
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-e_k8hq6a/pynacl/ 提示pip版本太低,可以更新pip版本试试…
Xcode8 pod install 报错 "Generating Pods project Abort trap 今天在写一个新项目的时候,使用cocoapods在执行 $ pod install 的时候,终端提示 Generating Pods project Abort trap: 6 解决办法: 删除所有cocoapods gems, 依次执行以下命令: sudo gem uninstall cocoapods sudo gem uninstall cocoapods-core sudo…
最近重新安装win10 64位专业版, 正好遇到python3.8发布,试了一下.结果jupyter都安装不了...心碎. ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. 查看网上资料,大多数都说升级两个包就可以了,一个是pip,一个是setuptools,升级方式如下: python -m pip install --u…
1:今天系统重装以后,下载了新的版本的python3.6.1.然后想通过pycurl模块测试URL,突然发现windows10下我无法通过pip安装pycurl模块了,报错内容如下 Collecting pycurl Using cached pycurl-7.43.0.tar.gz Complete output from command python setup.py egg_info: Please specify --curl-dir=/path/to/built/libcurl ---…
公司业务需求,开发语言python2,需要使用数据库:postgresql,需要安装模块psycopg2这个模块, 使用pip install psycopg2 报错: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-mvzdNj/psycopg2/ 最后google找到这篇博文:https://www.cnblogs.com/dspace/p/5438628.html 成功…