-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
- I believe the issue that we saw before was an issue with setuptools (I executed the following command (sudo apt-get install python3-venv) which seems to have fixed the issue.
- When creating a virtual environment, please assign a distinct name to it (bioneuralnet) to avoid confusion, also this fixed the source issue (when executing the following command source ./bioneuralnet/bin/activate, I would get a permission denied issue).
- Now I get the following error from torch installation: ERROR: Could not find a version that satisfies the requirement torch==2.0.0 (from versions: 2.2.0, 2.2.1, 2.2.2, 2.3.0, 2.3.1, 2.4.0, 2.4.1, 2.5.0, 2.5.1)
BioNeuralNet/scripts/setup-env.sh
Line 21 in 571e05c
| python3 -m venv .venv |
Here are the changes that I needed to make for the script (setup-env.sh) to work:
python3 -m venv ./bioneuralnet
source ./bioneuralnet/bin/activate
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working