您的位置:首页 > 编程语言 > Python开发

Get a List of Keys From a Dictionary in Both Python 2 and Python 3

2016-08-17 14:24 615 查看
http://askubuntu.com/questions/656610/trying-to-install-mysql-connector-for-python-3?rq=1

trying to install mysql-connector for python 3

up vote0down votefavorite

my experience is minimal with Linux so i need a little help!

i am trying to install the python mysql-connector for python3.2, i was able to use pip to install it for python2.7 with 'pip install mysql-connector'. To install it for python 3 i believe you have to use the python3 pip instead of the python2 pip, i read that somewhere but im not sure if its correct, does the python3 pip know to get the correct connector or do you have to specify the specific version like 'pip install mysql-connector1.2'.

anyways, i was finding it difficult to get the py3 pip, then i came across a post advising the use of 'virtualenv' to make it easier to work with different versions of python. This post:

How to install pip for python 3 in ubuntu 12.04 LTS

says to create the virtual environment, activate it and then proceed to pip install whatever package you need. however, when i get as far as pip install it doesnt seem to get the mysql-connector that i need, and running 'pip --version' from inside the virtualenv it tells me that the python2.7 pip is being used.

i've tried other things to try get pip3 such as 'easy-install pip3' which doesnt seem to work either.

Is this the only route to take to get the correct mysql-connector? or is there another way i can get pip3 (for py3.2)?

thanks, any advice greatly appreciated!

software-installation python mysql python3
shareimprove this question
asked Aug 4 '15 at 20:46



ThriceGood
2613

add a comment

3 Answers

activeoldestvotes

up vote1down voteaccepted
Ah! The problem you seem to be facing is you can't create virtualenv with python3.

And to install dependencies for
python3
environment you run
pip3 install package-name


Follow these steps for creating virtualenv in python3 environment:

virtualenv -p /usr/bin/python3 yourenv
source yourenv/bin/activate
pip3 install mysql-connector


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐