vert icon indicating copy to clipboard operation
vert copied to clipboard

Virtual Environments For Lua

Results 8 vert issues
Sort by recently updated
recently updated
newest added

This PR adds support for `luajit` on `vert`, or at least it tries to. Since I only tested it on my computer (ubuntu 20.04 LTS on amd64), I did not...

The command line flags allow the user to install whatever version of luar or luarocks they want, but it downloads it from the internet directly. It would be great to...

I was hitting bugs that were solved years ago and just realized it's because the packages are out of date. As an alternative to updating this routinely, could you make...

Hi. I am trying to initialize an vert on macosx. `$ vert init --platform macosx .` I get ``` EXECUTING: make linux cd src && /Applications/Xcode.app/Contents/Developer/usr/bin/make linux /Applications/Xcode.app/Contents/Developer/usr/bin/make all MYCFLAGS=-DLUA_USE_LINUX...

Using ubuntu 16.10 here. Tried to create a lua5.1 environment, given I have lua5.1 and lua5.3 installed. Got the error below. ``` Makefile:54: recipe for target 'linux' failed make: ***...

Hi, I like this library. But, when I ran at MacOSX following error messages were raised. ``` EXECUTING: make linux cd src && /Applications/Xcode.app/Contents/Developer/usr/bin/make linux /Applications/Xcode.app/Contents/Developer/usr/bin/make all SYSCFLAGS="-DLUA_USE_LINUX" SYSLIBS="-Wl,-E -ldl...

virtualenv obeys `WORKON_HOME`, I'd suggest something similar for vert, e.g. `VERTS_HOME`. I'd also suggest changing the default from `~/.verts` to `${XDG_DATA_HOME:-~/.local/share}/verts`, but that's less of an issue if I can...

I was using `bin/activate` inside a script, and noticed that it has issues with `set -euo pipefail`: ```sh # ./scripts/test.sh #!/usr/bin/env bash set -euo pipefail . ./.vert/bin/activate # running it...