Lors de la création d'un environnement virtuel, il peut être créé avec virtualenv. Par exemple, cela ressemble à ce qui suit.
Cependant, dans l'environnement virtuel ainsi créé, une erreur peut se produire lors de l'importation d'un module tel que matplotlib.pyplot
. J'obtiens une erreur lorsque j'essaye d'utiliser le backend macosx.
$ virtualenv --python=`which python3.5` --system-site-packages viz
$ . ./viz/bin/activate
(viz)$ python -c 'import matplotlib.pyplot'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/opt/local/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/matplotlib/pyplot.py", line 114, in <module>
_backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
File "/opt/local/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/matplotlib/backends/__init__.py", line 32, in pylab_setup
globals(),locals(),[backend_name],0)
File "/opt/local/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/matplotlib/backends/backend_macosx.py", line 24, in <module>
from matplotlib.backends import _macosx
RuntimeError: Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework. See the Python documentation for more information on installing Python as a framework on Mac OS X. Please either reinstall Python as a framework, or try one of the other backends. If you are Working with Matplotlib in a virtual enviroment see 'Working with Matplotlib in Virtual environments' in the Matplotlib FAQ
-m venv
au lieu de virtualenvÀ partir de python3.3, la bibliothèque standard de python elle-même a une fonction pour exécuter un environnement virtuel. Utilisez ceci pour créer un environnement virtuel.
$ python -m venv --system-site-packages viz2
$ . ./viz2/bin/activate
(viz2)$ python -c 'import matplotlib.pyplot'
Jouez avec PYTHON HOME.
(viz)$ deactivate
$ which python
/opt/local/bin/python
$ . viz/bin/activate
(viz)$ PYTHONHOME=$VIRTUAL_ENV /opt/local/bin/python -c 'import matplotlib.pyplot'
Si vous mettez un lien. lien Ces informations doivent être transmises à ceux qui ont lu l'article précédent.
Recommended Posts