How to make a virtual environment on a flash drive? Even under sudo says
wolf@wolf-pc:/media/C47D-5F53$ sudo virtualenv django New python executable in django/bin/python ERROR: The executable django/bin/python could not be run: [Errno 13] Permission denied
noexec
.cat /proc/mounts | grep -F /media/C47D-5F53
cat /proc/mounts | grep -F /media/C47D-5F53
sudo mount -o remount,exec /media/C47D-5F53
- drdaemancat ... | grep ...
”) gives out? FAT / NTFS does not have POSIX rights and, accordingly, executable bit. As a rule, its system puts on all files, but sometimes vice versa. This is determined, if I remember correctly, by the parametersumask
andfmask
. Accordingly, you can try something in the spirit ofmount -o remount,umask=000 /media/C47D-5F53
. - drdaeman