Git clone for development installation doesn't work #468
-
Search before asking
QuestionI follow the command for cloning the repo locally and creating a venv. I run the following:
All good until here. When I run
AdditionalNo response |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
Hello there, thank you for opening an Issue ! 🙏🏻 The team was notified and they will get back to you asap. |
Beta Was this translation helpful? Give feedback.
-
@onuralpszr, could you take a look at this? |
Beta Was this translation helpful? Give feedback.
-
@xaristeidou I just created a fresh ubuntu 20.04 docker container to test it. I installed python3.8 with venv and pip package from ubnutu repo and after you create virtualenv please do git clone https://github.com/roboflow/supervision.git
cd supervision
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip # this needs first
pip install -e "." For toml editable support you need recent version pip and after you update your pip inside of "virtualenv" it should be work fine. I tested as well. |
Beta Was this translation helpful? Give feedback.
-
PR created : #469 cc @SkalskiP |
Beta Was this translation helpful? Give feedback.
@xaristeidou I just created a fresh ubuntu 20.04 docker container to test it. I installed python3.8 with venv and pip package from ubnutu repo and after you create virtualenv please do
For toml editable support you need recent version pip and after you update your pip inside of "virtualenv" it should be work fine. I tested as well.