我已经安装了两个版本的python。
win32上的Python 2.7.2 (默认,Jun 12 2011,15:08:59) MSC v.1500 32位(英特尔)
Python 2.7.7 |Anaconda 2.0.1 ( 64位)|(默认,Jun 11 2014,10:40:02) win32上的MSCv.1 500 64位(AMD64)
我正在尝试为anaconda python包安装PyMySQL,问题是当我尝试安装它时,它安装在Python2.7.2中。我如何才能成功地安装anaconda版本的库。我尝试使用anaconda命令
conda install PyMySQ但没有奏效,也试过了
python.exe C:\Users\jimenez\Downloads\PyMySQL-0.6.2\setup.py install下面是发生的事情
C:\Anaconda>python.exe C:\Users\jimenez\Downloads\PyMySQL-0.6.2\setup.py install
running install
running bdist_egg
running egg_info
writing PyMySQL.egg-info\PKG-INFO
writing top-level names to PyMySQL.egg-info\top_level.txt
writing dependency_links to PyMySQL.egg-info\dependency_links.txt
warning: manifest_maker: standard file 'setup.py' not found
reading manifest file 'PyMySQL.egg-info\SOURCES.txt'
writing manifest file 'PyMySQL.egg-info\SOURCES.txt'
installing library code to build\bdist.win-amd64\egg
running install_lib
warning: install_lib: 'build\lib' does not exist -- no Python modules to install
creating build\bdist.win-amd64\egg
creating build\bdist.win-amd64\egg\EGG-INFO
copying PyMySQL.egg-info\PKG-INFO -> build\bdist.win-amd64\egg\EGG-INFO
copying PyMySQL.egg-info\SOURCES.txt -> build\bdist.win-amd64\egg\EGG-INFO
copying PyMySQL.egg-info\dependency_links.txt -> build\bdist.win-amd64\egg\EGG-I
NFO
copying PyMySQL.egg-info\top_level.txt -> build\bdist.win-amd64\egg\EGG-INFO
zip_safe flag not set; analyzing archive contents...
creating 'dist\PyMySQL-0.6.2-py2.7.egg' and adding 'build\bdist.win-amd64\egg' t
o it
removing 'build\bdist.win-amd64\egg' (and everything under it)
Processing PyMySQL-0.6.2-py2.7.egg
Removing c:\anaconda\lib\site-packages\PyMySQL-0.6.2-py2.7.egg
Copying PyMySQL-0.6.2-py2.7.egg to c:\anaconda\lib\site-packages
PyMySQL 0.6.2 is already the active version in easy-install.pth
Installed c:\anaconda\lib\site-packages\pymysql-0.6.2-py2.7.egg
Processing dependencies for PyMySQL==0.6.2
Finished processing dependencies for PyMySQL==0.6.2
C:\Anaconda>python
Python 2.7.7 |Anaconda 2.0.1 (64-bit)| (default, Jun 11 2014, 10:40:02) [MSC v.1
500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
Please check out: http://continuum.io/thanks and https://binstar.org
>>> import PyMySQL
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named PyMySQL在anaconda目录中,但它也不工作。我还能尝试什么呢?在这种情况下,我可以在anaconda中使用什么库来访问mysql数据服务器?
发布于 2016-10-10 04:36:35
我在这个问题上挣扎了一段时间,然后才意识到这个问题是通过用python调用python脚本来解决的(有点奇怪)。我在Windows上使用Anaconda。
从python导入可以很好地工作:
(root) c:\python_scripts>python
Python 3.5.2 |Anaconda 4.1.1 (64-bit)| (default, Jul 5 2016, 11:41:13) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymysql
>>> quit()尝试直接从cmd运行脚本(导入失败):
(root) c:\python_scripts>script.py
Traceback (most recent call last):
File "C:\python_scripts\GRAMR\CTA_monitor.py", line 5, in <module>
import pymysql
ImportError: No module named pymysql运行"python“的作品:
(root) c:\python_scripts>python script.py
Script working ...发布于 2016-04-10 15:12:27
我可以用conda install pymysql命令在我的ubuntu系统上安装sudo chmod -R 777 youAnacondaPath/anaconda3,如果有任何文件权限问题,可以运行pymysql命令。
发布于 2019-01-20 12:31:18
我也遇到过同样的问题。通过conda install pymysql解决了这个问题。
https://stackoverflow.com/questions/25816561
复制相似问题