SQLAlchemy Python 3 Ubuntu 16.04 -


i can't seem install newest version of sqlalchemy in python 3. similar questions asked on stackoverflow pre-2016 , talk older distributions of ubuntu, hence again question.

system

  • ubuntu 16.04
  • python 2.7.12 (default if call python in terminal)
  • python 3.5.2

tried

if follow instructions documentation (http://docs.sqlalchemy.org/en/rel_1_0/intro.html#installation) pip install sqlalchemy, installs python 2.7 (sqlalchemy.__version__: 1.0.15).

pip install python3-sqlalchemy not exist.

sudo apt-get install python3-sqlalchemy installs sqlalchemy in python3, sqlalchemy.__version__ gives 1.0.11

question

how latest version of sqlalchemy python3 directory, preferably without building source?

pip installing python 2 packages. install pypi package python 3, need use pip3:

pip3 install sqlalchemy 

Comments

Popular posts from this blog

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

mapreduce - Resource manager does not transit to active state from standby -

serialization - Convert Any type in scala to Array[Byte] and back -