Added ascii2img installation

Added uninstallation script
This commit is contained in:
Samuel
2018-03-22 16:41:17 +08:00
parent 666b828af3
commit 7a6a0581a3
1152 changed files with 166080 additions and 0 deletions

11
ascii2img/ENV/bin/pip3.6 Executable file
View File

@@ -0,0 +1,11 @@
#!/home/samuel/Projects/easyscripts/ascii2img/ENV/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())