Re: Set an environment variable

2005-10-20 Thread the_crazy88
Just use os.system("export PYTHONPATH = %s" %("your_pythonpath")) -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Doc Error: os.makedirs

2005-10-19 Thread the_crazy88
if not os.path.isdir("your_dir_name"): makedirs("your_dir_name") -- http://mail.python.org/mailman/listinfo/python-list