I\'m trying to use a Python script to change directory, but I am getting an error.
The python code:
import subprocess p = subprocess.Popen([\'cd\',
You need to include all path with
path = os.path.dirname('$0') currentpath = os.path.abspath(path) os.chdir(path)