You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789 |
- for path in `find pylibs/ -maxdepth 1 -type d`; do
- if [[ $path != "pylibs/" ]];then
- lib=${path#*/}
- echo Creating symbolic link for library $lib
- rm -f venv/lib/python3.9/site-packages/$lib
- ln -s ../../../../$path venv/lib/python3.9/site-packages/
- fi
- done
|