Shebangs In Conda Managed Environments
I am trying to write a program in Hy and run it per the instructions on the Quickstart page in the documentation. So I installed Hy using pip from the GitHub repo per the docs, th
Solution 1:
#!/usr/bin/env hy
will actually work with Conda. You just need to say source activate myenv
before running the script.
Post a Comment for "Shebangs In Conda Managed Environments"