I have created a virtualenv and installed SQLAlchemy in it:
JavaScript
x
4
1
$ virtualenv alchemy
2
$ source alchemy/bin/activate
3
$ pip install sqlalchemy
4
import
works in python:
JavaScript
1
8
1
$ python
2
Python 2.7.5 (default, Mar 9 2014, 22:15:05)
3
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
4
Type "help", "copyright", "credits" or "license" for more information.
5
>>> import sqlalchemy
6
>>> print sqlalchemy.__version__
7
0.9.7
8
But it does not work in bpython:
JavaScript
1
5
1
>>> import sqlalchemy
2
Traceback (most recent call last):
3
File "<input>", line 1, in <module>
4
ImportError: No module named sqlalchemy
5
Why can’t bpython find the package installed in the virtualenv, even though it is executed after source alchemy/bin/activate
is called?
Advertisement
Answer
bpython
must be installed in the virtualenv, otherwise the external, system-wide bpython is called:
JavaScript
1
10
10
1
$ source alchemy/bin/activate
2
(alchemy)[ 10:34PM ] [ adamatan@rubidium:/tmp ]
3
$ pip install bpython
4
5
$ alchemy/bin/bpython
6
--------------
7
>>> import sqlalchemy
8
>>> print sqlalchemy.__version__
9
0.9.7
10