Created
November 15, 2012 18:55
-
-
Save k4ml/4080461 to your computer and use it in GitHub Desktop.
Copy system packages into virtualenv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import shutil | |
pkgname = sys.argv[1] | |
venv = sys.argv[2] | |
pyversion = '%s.%s' % (sys.version_info[0], sys.version_info[1]) | |
try: | |
pkgobj = __import__(pkgname) | |
except Exception as e: | |
print e | |
sys.exit(1) | |
pkgdir = os.path.dirname(pkgobj.__file__) | |
dst = '%s/lib/python%s/site-packages/%s' % (venv, pyversion, pkgname) | |
shutil.copytree(pkgdir, dst) |
It should work. The library will be copied to .venv/lib/python3.XX/site-packages/
, not .venv/
.
Got it! Thanks! Sorry...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Could you please update for python 3.11? When I try to run:
If I change to
print(e)
then it runs without error but doesn't seem to do anything either as nothing new is put into ~/.venv/pkg.Thanks