Here is a method to make symlinks, instead of copy the needed files:
$ sudo su -
# cd /usr/share/phatch/phatch
# for i in /usr/lib/python3/dist-packages/PIL/*.*; do ln -s "$i" "${i##*/}"; done
After that command, you will get this information:
ln: failed to create symbolic link ‘__init__.py’: File exists
Thats a good message :) so original file inside phatch folder won't be overwritten...
Hope there will be soon a fix for that.. but the above helped me to get phatch running...
Hey all
Here is a method to make symlinks, instead of copy the needed files:
$ sudo su - phatch/ phatch python3/ dist-packages/ PIL/*.* ; do ln -s "$i" "${i##*/}"; done
# cd /usr/share/
# for i in /usr/lib/
After that command, you will get this information:
ln: failed to create symbolic link ‘__init__.py’: File exists
Thats a good message :) so original file inside phatch folder won't be overwritten...
Hope there will be soon a fix for that.. but the above helped me to get phatch running...
Regards
thomi