Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
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
|