1
0

fix for virtualenv install

This commit is contained in:
ThomasV
2014-10-23 22:44:41 +02:00
parent b8a5d4146d
commit 692d215f26

View File

@@ -17,7 +17,10 @@ if sys.version_info[:3] < (2, 6, 0):
usr_share = util.usr_share_dir()
if not os.access(usr_share, os.W_OK):
sys.exit("Error: cannot write to %s.\nIf you do not have root permissions, you may install Electrum a virtualenv.\nAlso, please note that you can run Electrum without installing it on your system."%usr_share)
try:
os.mkdir(usr_share)
except:
sys.exit("Error: cannot write to %s.\nIf you do not have root permissions, you may install Electrum in a virtualenv.\nAlso, please note that you can run Electrum without installing it on your system."%usr_share)
data_files = []
if (len(sys.argv) > 1 and (sys.argv[1] == "sdist")) or (platform.system() != 'Windows' and platform.system() != 'Darwin'):