是否有类似于Python实用程序virtualenv的东西?
基本上,它允许您将Python软件包安装到沙盒环境中,因此easy_install django
不在系统范围的site-packages目录中,而应在virtualenv创建的目录中。
例如:
$ virtualenv test
New python executable in test/bin/python
Installing setuptools...cd .........done.
$ cd test/
$ source bin/activate
(test)$ easy_install tvnamer
Searching for tvnamer
Best match: tvnamer 0.5.1
Processing tvnamer-0.5.1-py2.5.egg
Adding tvnamer 0.5.1 to easy-install.pth file
Installing tvnamer script to /Users/dbr/test/bin
Using /Library/Python/2.5/site-packages/tvnamer-0.5.1-py2.5.egg
Processing dependencies for tvnamer
Finished processing dependencies for tvnamer
(test)$ which tvnamer
/Users/dbr/test/bin/tvnamer
RubyGems是否有类似的东西?
最佳答案
RVM更接近virtualenv的工作方式,因为它可以让您沙盒化不同的 ruby 版本及其 gem 等。
关于python - Ruby相当于virtualenv吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/486995/