Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kdm9/venv.jl
Python-style virtual environments in Julia
https://github.com/kdm9/venv.jl
Last synced: 11 days ago
JSON representation
Python-style virtual environments in Julia
- Host: GitHub
- URL: https://github.com/kdm9/venv.jl
- Owner: kdm9
- License: mit
- Created: 2015-06-25T01:19:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-04T03:53:51.000Z (about 8 years ago)
- Last Synced: 2024-10-11T19:23:00.164Z (about 1 month ago)
- Language: Shell
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
venv.jl
=======Python-style virtual environments in Julia
To use this:
cp venv-jl.sh ~/.venv-jl.sh
echo 'source ~/.venv-jl.sh' >> ~/.bashrc # or zshrc, if that's your thingCommands:
lsjlenv # lists environments
mkjlenv # make new virtual environment
rmjlenv # rm -rf a virtual environment
jlworkon # use an environment until shell exits, or jldeactivate is called
jldeactivate # stop using an environment, and go back to the system pkgdir## WARNING:
**This is basically a proof of concept. I will probably eventually loot code
from virtualenv/RVM/NVM.** This is essentially a bunch of shell hacks. It still
needs a whole lot of work.