str*_*man 10 python ubuntu bottle ubuntu-10.10
$ sudo pip install bottle
Downloading/unpacking bottle
Downloading bottle-0.10.7.tar.gz (55Kb): 55Kb downloaded
Running setup.py egg_info for package bottle
Installing collected packages: bottle
Found existing installation: bottle 0.10.7
Uninstalling bottle:
Successfully uninstalled bottle
Running setup.py install for bottle
changing mode of build/scripts-2.6/bottle.py from 640 to 755
changing mode of /usr/local/bin/bottle.py to 755
Successfully installed bottle
>>> help('modules')
blahblah
bottle
blahblah
$ ls /usr/local/lib/python2.6/dist-packages/
bottle-0.10.7.egg-info bottle.py bottle.pyc
Run Code Online (Sandbox Code Playgroud)
但
$ python
Python 2.6.6 (r266:84292, Sep 15 2010, 15:52:39)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import bottle
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named bottle
Run Code Online (Sandbox Code Playgroud)
跆拳道??? Ubuntu 10.10
解决方案:#chmod -R 775 /usr/local/lib/python2.6/dist-packages/对我有帮助.谢谢大家.
最终为我工作的是:
chmod -R 775 /usr/local/lib/python2.6/dist-packages/
Run Code Online (Sandbox Code Playgroud)