The «Permission denied» error in PyCharm is a common problem faced by developers using the Python programming language. This error occurs when the user does not have sufficient permissions to access a file or directory, which can cause problems when attempting to execute scripts or projects within PyCharm. The issue can be resolved by changing the permissions on the relevant file or directory, or by changing the configuration of PyCharm itself. Here are several methods to solve the issue:
Method 1: Run PyCharm as an Administrator
If you are encountering the PyCharm error «[Errno 13] Permission denied», running PyCharm as an administrator can often solve the issue. Here are the steps to do this:
-
Right-click on the PyCharm icon and select «Run as administrator».
-
Once PyCharm is open, navigate to the file or project that is giving you the permission denied error.
-
Right-click on the file or project and select «Properties».
-
In the Properties window, select the «Security» tab.
-
Click on the «Edit» button to change the permissions.
-
In the Permissions window, select the user account that you want to give permission to.
-
Check the «Full control» box to give the user account full permission.
-
Click «Apply» to save the changes.
Here is an example of how to run PyCharm as an administrator in Python:
import os
os.system("runas /user:Administrator PyCharm.exe")
In this example, we are using the os.system() function to run the runas command, which allows us to run PyCharm as an administrator. The /user:Administrator option specifies the administrator account, and PyCharm.exe is the PyCharm executable.
Overall, running PyCharm as an administrator can be a quick and easy solution to the «[Errno 13] Permission denied» error.
Method 2: Change the Permissions of the File or Directory
To fix the PyCharm error [Errno 13] Permission denied, you can change the permissions of the file or directory. Here are the steps to do it:
- Open the terminal or command prompt.
- Navigate to the directory where the file is located using the
cdcommand. - Use the
ls -lcommand to list the files and their permissions. You should see something like this:
-rw-r--r-- 1 user user 0 Jan 1 00:00 myfile.py
- The first column represents the file permissions. The first three characters (
rw-) indicate the permissions for the owner, the second three characters (r--) indicate the permissions for the group, and the last three characters (r--) indicate the permissions for everyone else. - To change the permissions, use the
chmodcommand followed by the desired permissions and the file name. For example, to give the owner read, write, and execute permissions and everyone else no permissions, use:
- Now you should be able to run the file without getting the permission denied error.
Here are some other examples of using the chmod command:
- To give the owner and group read and write permissions, and everyone else no permissions:
- To give the owner, group, and everyone else read and write permissions:
- To give the owner read, write, and execute permissions, the group read and execute permissions, and everyone else no permissions:
- To give the owner read, write, and execute permissions, the group read and execute permissions, and everyone else read and execute permissions:
Note that changing the permissions can have security implications, so be careful when granting permissions to files and directories.
Method 3: Disable the User Account Control (UAC)
If you encounter the PyCharm error «[Errno 13] Permission Denied» while trying to run your Python code, you can try disabling the User Account Control (UAC) to fix the issue. Here are the steps:
-
Open the Start menu and type «UAC» in the search box. Click on «Change User Account Control settings».
-
Move the slider to the bottom to «Never notify» and click «OK».
-
Restart your computer to apply the changes.
-
Open PyCharm and try running your Python code again.
Here is an example code that you can use to test if the error has been fixed:
import os
file_path = "C:\\Program Files\\Python\\test.txt"
try:
with open(file_path, "w") as f:
f.write("Hello, world!")
print("File written successfully.")
except Exception as e:
print("Error writing file:", e)
finally:
os.remove(file_path)
This code tries to write a file to the «C:\Program Files\Python» directory, which requires administrator privileges. If you have disabled UAC and the error has been fixed, you should see the message «File written successfully.» printed to the console.
Note that disabling UAC may make your computer less secure, so you should only do it temporarily to fix the PyCharm error and then turn it back on afterwards.
Method 4: Configure PyCharm to Run with Sudo
To configure PyCharm to run with sudo, follow these steps:
-
Open the terminal and type the following command to open the PyCharm configuration file:
sudo nano /opt/pycharm-<version>/bin/pycharm64.vmoptions -
Add the following line to the configuration file:
-
Save and close the file.
-
Open PyCharm and navigate to «Run» > «Edit Configurations».
-
Click the «+» button to add a new configuration.
-
Under «Script parameters», add the following line:
sudo python3 <path/to/your/script.py> -
Save the configuration and run your script. You should no longer receive the «[Errno 13] Permission denied» error.
Example code:
import os
with open('/test.txt', 'w') as f:
f.write('Hello, world!')
try:
with open('/test.txt', 'r') as f:
print(f.read())
except PermissionError:
print('Permission denied')
os.system('sudo python3 /path/to/your/script.py')
In the above example, we create a file in the root directory and then try to read it without sudo. Since we don’t have permission to access the root directory without sudo, we receive a «Permission denied» error. We then use the os.system() function to run the script with sudo, which allows us to read the file without any errors.
Method 5: Use a Virtual Environment
If you’re encountering the PyCharm error [Errno 13] Permission denied, it means that you don’t have the necessary permissions to access a certain file or directory. One solution to this problem is to use a virtual environment. Here’s how you can fix the error using a virtual environment:
Step 1: Create a Virtual Environment
The first step is to create a virtual environment using venv. You can do this by opening a terminal and running the following command:
This will create a new virtual environment named myenv.
Step 2: Activate the Virtual Environment
Next, you need to activate the virtual environment using the following command:
source myenv/bin/activate
This will activate the virtual environment and you should see (myenv) in your terminal prompt.
Step 3: Install Required Packages
Now that you’re in the virtual environment, you can install the required packages using pip. For example, if you need to install numpy, you can run the following command:
Step 4: Open PyCharm
Next, open PyCharm and create a new project. Make sure to select the interpreter from the virtual environment you just created. You can do this by going to File > Settings > Project: <project name> > Python Interpreter and selecting the interpreter from the drop-down list.
Step 5: Run Your Code
Finally, you can run your code in PyCharm without encountering the [Errno 13] Permission denied error. This is because you’re running your code in the virtual environment, which has the necessary permissions to access the files and directories.
import os
with open("file.txt", "w") as f:
f.write("Hello, world!")
os.mkdir("mydir")
In this example, we’re creating a new file and directory using the os module. If you were to run this code outside of the virtual environment, you would encounter the [Errno 13] Permission denied error. However, since you’re running it in the virtual environment, it should run without any issues.
Asked
Viewed
62k times
I am using PyCharm for executing my Python programs. Today, I had tried updating all the packages using Project Interpreter. I received the following error in the process:
error: [Errno 13] Permission denied
After which none of my Python libraries are shown in Project Interpreter list.
I am using PyCharm Community Edition 2016.2.3 in Mac OS X 10.11.6.
- python
- python-3.x
- pycharm
bad_coder
11.3k20 gold badges44 silver badges72 bronze badges
asked Sep 23, 2016 at 10:46
7 Answers
For those Windows users, you can change the permission of file operation using git bash. Just open the git bash in that directory and change the file operation using the command chmod u+rw filename.csv, where filename is your actual file name, and in the place of CSV, you can give the correct extension of your file.
cconsta1
7411 gold badge6 silver badges20 bronze badges
answered Apr 29 at 15:48
It looks like you need to give your interpretter root permissions. There is a tutorial here on how to do this
answered Sep 23, 2016 at 10:51
user3684792user3684792
2,5422 gold badges18 silver badges23 bronze badges
1
-
pls can you explain better, I followed the link to the site but still couldn’t solve it
Apr 28, 2018 at 23:32
Try to remove the shebang if you have it in your code and then try to run it……BTW this Worked for me.
answered Apr 14, 2022 at 17:28
1
-
My issue was due to a mismatch between the shebang and the interpreter.
Aug 14, 2022 at 16:34
The PermissionError: [errno 13] permission denied error occurs when you try to access a file from Python without having the necessary permissions. In your case the file (or directory ???) of interest is /var/folders/2k/_1tccbln53165lgvzvzt3b480000gp/T/tmprqbtrpspycharm-management/setuptools-18.1. You might want to use chmod or chown to change access permissions to it.
answered Jun 22, 2021 at 18:02
AntricksAntricks
1711 silver badge9 bronze badges
-
sudo visudo -f /etc/sudoers.d/python -
inside the /etc/sudoers.d/python you just created enter these details in the given format
<current_username> <hostname> = (root) NOPASSWD: <full path to python>ie mostly you might have creating a virtual env in pycharm when you start a project. so in that you would find a bin folder. inside which you will find many python virtual interpreters(mention that absolute path ex /home/<project_foldername>/bin/python). -
anywhere you can create shell script
python-sudo.sh -
inside
python-sudo.shmention like this#!/bin/bash sudo <same_path_you_given_in_"/etc/sudoers.d/python"_file> "$@" -
Now open your pycharm and project you need to run/debugg the go to
setting > project:projectname > Python InterpreterClick on Wheel Icon and Then click on «Add» -
In the new window that popup select Existing Environment > Select the shell script which you created
python-sudo.sh. Then click OK > and then Click Apply -
Make sure that on top right side of editor near to green run button
Run/Debug configurationsmall drop down menu for your file which you are about to execute/debug click onEdit Configurationand the same python interpreter is selected there as well which ispython-sudo.sh. -
Now try executing/debugging, it should work.
Tomerikoo
18.4k16 gold badges47 silver badges61 bronze badges
answered Jul 21, 2021 at 12:11
I had the same issue after changing python directory. Then I changed the interpreter setting to a new python directory then ‘Run’ the code from the Menu and selected 2nd ‘Run’ option or you can just use the shortcut as Alt+Shift+F10′ and a small window appears with your code file name then select the filename which you cant to Run.
This resolved my issue!
enter image description here
Sach
9048 silver badges20 bronze badges
answered Jun 23, 2022 at 13:53
I encountered the same problem. When I removed the python libs installed out of Pycharm IDE, I found that there is no installation problem. Please use the pip uninstall command.
answered Jul 26, 2019 at 13:17
saleesalee
1891 gold badge1 silver badge9 bronze badges
1
-
This is unrelated and dangerous suggestion to a beginner. Please delete.
Sep 15, 2021 at 4:54
- The Overflow Blog
- Featured on Meta
Linked
Related
Hot Network Questions
-
The world’s smallest square maze?
-
How to ensure data consistency in system with multiple databases?
-
Is it true that common law courts will not resolve a question without a controversy?
-
How to safely pose this Mary Sue character?
-
MPQ4470-AEC1 Layout guideline clarification
-
The Usage of «Would»
-
Etiquette concerning Lab Findings / Results
-
Deutschlandticket to Dutch border stations — how to pass the ticket gates?
-
What IC is branded H1U?
-
A Trivial Pursuit #10 (Art and Literature 2/4): Bookshelf
-
Does a bag carried out to the escape count as a secured bag?
-
why has teixobactin not reached clinical use in humans yet?
-
What happens if you ignore a howler?
-
Flutter Xcode 15 Error (Xcode): DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS
-
Are integrated LEDs a riskier purchase than screw-in bulbs?
-
String containing characters in the same order as other string
-
What level should this version of Warp Mind be?
-
What are the movable-plastic-bag-looking things on the nose of Shuttle?
-
Can a hexagonal grid embed rectangular coordinates?
-
Does a slippery liquid leak through pipe fittings?
-
What’s the meaning of «soli» in this sentence?
-
How did Professor Sprout bandage the Whomping Willow?
-
Can someone help me understand why the MAE, MSE and RMSE scores for my regression model are very low but the R2 is negative?
-
Online shopping: order date vs shipping date vs charge date
more hot questions
Question feed
Your privacy
By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.
Solution 1:[1]
It looks like you need to give your interpretter root permissions. There is a tutorial here on how to do this
Solution 2:[2]
The PermissionError: [errno 13] permission denied error occurs when you try to access a file from Python without having the necessary permissions. In your case the file (or directory ???) of interest is /var/folders/2k/_1tccbln53165lgvzvzt3b480000gp/T/tmprqbtrpspycharm-management/setuptools-18.1. You might want to use chmod or chown to change access permissions to it.
Solution 3:[3]
-
sudo visudo -f /etc/sudoers.d/python -
inside the /etc/sudoers.d/python you just created enter these details in the given format
<current_username> <hostname> = (root) NOPASSWD: <full path to python>ie mostly you might have creating a virtual env in pycharm when you start a project. so in that you would find a bin folder. inside which you will find many python virtual interpreters(mention that absolute path ex /home/<project_foldername>/bin/python). -
anywhere you can create shell script
python-sudo.sh -
inside
python-sudo.shmention like this#!/bin/bash sudo <same_path_you_given_in_"/etc/sudoers.d/python"_file> "$@" -
Now open your pycharm and project you need to run/debugg the go to
setting > project:projectname > Python InterpreterClick on Wheel Icon and Then click on «Add» -
In the new window that popup select Existing Environment > Select the shell script which you created
python-sudo.sh. Then click OK > and then Click Apply -
Make sure that on top right side of editor near to green run button
Run/Debug configurationsmall drop down menu for your file which you are about to execute/debug click onEdit Configurationand the same python interpreter is selected there as well which ispython-sudo.sh. -
Now try executing/debugging, it should work.
Solution 4:[4]
Try to remove the shebang if you have it in your code and then try to run it……BTW this Worked for me.
Issue
I am using PyCharm for executing my Python programs. Today, I had tried updating all the packages using Project Interpreter. I received the following error in the process:
error: [Errno 13] Permission denied
After which none of my Python libraries are shown in Project Interpreter list.
I am using PyCharm Community Edition 2016.2.3 in Mac OS X 10.11.6.
Solution
It looks like you need to give your interpretter root permissions. There is a tutorial here on how to do this
Answered By — user3684792
This Answer collected from stackoverflow and tested by PythonFixing community admins, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0
The «Permission denied» error in PyCharm is a common problem faced by developers using the Python programming language. This error occurs when the user does not have sufficient permissions to access a file or directory, which can cause problems when attempting to execute scripts or projects within PyCharm. The issue can be resolved by changing the permissions on the relevant file or directory, or by changing the configuration of PyCharm itself. Here are several methods to solve the issue:
Method 1: Run PyCharm as an Administrator
If you are encountering the PyCharm error «[Errno 13] Permission denied», running PyCharm as an administrator can often solve the issue. Here are the steps to do this:
-
Right-click on the PyCharm icon and select «Run as administrator».
-
Once PyCharm is open, navigate to the file or project that is giving you the permission denied error.
-
Right-click on the file or project and select «Properties».
-
In the Properties window, select the «Security» tab.
-
Click on the «Edit» button to change the permissions.
-
In the Permissions window, select the user account that you want to give permission to.
-
Check the «Full control» box to give the user account full permission.
-
Click «Apply» to save the changes.
Here is an example of how to run PyCharm as an administrator in Python:
import os
os.system("runas /user:Administrator PyCharm.exe")
In this example, we are using the os.system() function to run the runas command, which allows us to run PyCharm as an administrator. The /user:Administrator option specifies the administrator account, and PyCharm.exe is the PyCharm executable.
Overall, running PyCharm as an administrator can be a quick and easy solution to the «[Errno 13] Permission denied» error.
Method 2: Change the Permissions of the File or Directory
To fix the PyCharm error [Errno 13] Permission denied, you can change the permissions of the file or directory. Here are the steps to do it:
- Open the terminal or command prompt.
- Navigate to the directory where the file is located using the
cdcommand. - Use the
ls -lcommand to list the files and their permissions. You should see something like this:
-rw-r--r-- 1 user user 0 Jan 1 00:00 myfile.py
- The first column represents the file permissions. The first three characters (
rw-) indicate the permissions for the owner, the second three characters (r--) indicate the permissions for the group, and the last three characters (r--) indicate the permissions for everyone else. - To change the permissions, use the
chmodcommand followed by the desired permissions and the file name. For example, to give the owner read, write, and execute permissions and everyone else no permissions, use:
- Now you should be able to run the file without getting the permission denied error.
Here are some other examples of using the chmod command:
- To give the owner and group read and write permissions, and everyone else no permissions:
- To give the owner, group, and everyone else read and write permissions:
- To give the owner read, write, and execute permissions, the group read and execute permissions, and everyone else no permissions:
- To give the owner read, write, and execute permissions, the group read and execute permissions, and everyone else read and execute permissions:
Note that changing the permissions can have security implications, so be careful when granting permissions to files and directories.
Method 3: Disable the User Account Control (UAC)
If you encounter the PyCharm error «[Errno 13] Permission Denied» while trying to run your Python code, you can try disabling the User Account Control (UAC) to fix the issue. Here are the steps:
-
Open the Start menu and type «UAC» in the search box. Click on «Change User Account Control settings».
-
Move the slider to the bottom to «Never notify» and click «OK».
-
Restart your computer to apply the changes.
-
Open PyCharm and try running your Python code again.
Here is an example code that you can use to test if the error has been fixed:
import os
file_path = "C:\Program Files\Python\test.txt"
try:
with open(file_path, "w") as f:
f.write("Hello, world!")
print("File written successfully.")
except Exception as e:
print("Error writing file:", e)
finally:
os.remove(file_path)
This code tries to write a file to the «C:Program FilesPython» directory, which requires administrator privileges. If you have disabled UAC and the error has been fixed, you should see the message «File written successfully.» printed to the console.
Note that disabling UAC may make your computer less secure, so you should only do it temporarily to fix the PyCharm error and then turn it back on afterwards.
Method 4: Configure PyCharm to Run with Sudo
To configure PyCharm to run with sudo, follow these steps:
-
Open the terminal and type the following command to open the PyCharm configuration file:
sudo nano /opt/pycharm-<version>/bin/pycharm64.vmoptions -
Add the following line to the configuration file:
-
Save and close the file.
-
Open PyCharm and navigate to «Run» > «Edit Configurations».
-
Click the «+» button to add a new configuration.
-
Under «Script parameters», add the following line:
sudo python3 <path/to/your/script.py> -
Save the configuration and run your script. You should no longer receive the «[Errno 13] Permission denied» error.
Example code:
import os
with open('/test.txt', 'w') as f:
f.write('Hello, world!')
try:
with open('/test.txt', 'r') as f:
print(f.read())
except PermissionError:
print('Permission denied')
os.system('sudo python3 /path/to/your/script.py')
In the above example, we create a file in the root directory and then try to read it without sudo. Since we don’t have permission to access the root directory without sudo, we receive a «Permission denied» error. We then use the os.system() function to run the script with sudo, which allows us to read the file without any errors.
Method 5: Use a Virtual Environment
If you’re encountering the PyCharm error [Errno 13] Permission denied, it means that you don’t have the necessary permissions to access a certain file or directory. One solution to this problem is to use a virtual environment. Here’s how you can fix the error using a virtual environment:
Step 1: Create a Virtual Environment
The first step is to create a virtual environment using venv. You can do this by opening a terminal and running the following command:
This will create a new virtual environment named myenv.
Step 2: Activate the Virtual Environment
Next, you need to activate the virtual environment using the following command:
source myenv/bin/activate
This will activate the virtual environment and you should see (myenv) in your terminal prompt.
Step 3: Install Required Packages
Now that you’re in the virtual environment, you can install the required packages using pip. For example, if you need to install numpy, you can run the following command:
Step 4: Open PyCharm
Next, open PyCharm and create a new project. Make sure to select the interpreter from the virtual environment you just created. You can do this by going to File > Settings > Project: <project name> > Python Interpreter and selecting the interpreter from the drop-down list.
Step 5: Run Your Code
Finally, you can run your code in PyCharm without encountering the [Errno 13] Permission denied error. This is because you’re running your code in the virtual environment, which has the necessary permissions to access the files and directories.
import os
with open("file.txt", "w") as f:
f.write("Hello, world!")
os.mkdir("mydir")
In this example, we’re creating a new file and directory using the os module. If you were to run this code outside of the virtual environment, you would encounter the [Errno 13] Permission denied error. However, since you’re running it in the virtual environment, it should run without any issues.
I get permission denied on pycharm when adding an interpreter. It used to work and suddenly broke not sure what changed. It broke on pycharm 2.7.3 i upgraded to 3.0 but still broken. The interpeted is added but it throws this error. Any information would be useful. I think it might broke after installing virtual enviroments(not sure)
The paths are ok but the packages are empty and the install button is grayed out. Usualy i install through terminal but it would be nice to get the ide fully working anyway.
Update
which python ->/usr/bin/python
Update 2
I found that some egg files have different permissions.
When i change the permissions to rw r r (644) they come back to 600 for some reason.
umask -> 0022
drwxr-xr-x 2 root root 4096 02.09.2013 01:06 ./
drwxr-xr-x 53 root root 4096 23.09.2013 21:29 ../
-rw-r--r-- 1 root root 8 02.09.2013 01:06 top_level.txt
-rw-r--r-- 1 root root 1319 02.09.2013 01:06 PKG-INFO
-rw-r--r-- 1 root root 1 02.09.2013 01:06 dependency_links.txt
-rw-r--r-- 1 root root 5792 02.09.2013 01:06 SOURCES.txt
-rw-r--r-- 1 root root 8666 02.09.2013 01:06 installed-files.txt
drwxr-xr-x 4 root root 4096 31.08.2013 22:28 ../
drwxr-xr-x 2 root root 4096 31.08.2013 22:28 ./
-rw------- 1 root root 9 31.08.2013 22:28 top_level.txt
-rw------- 1 root root 563 31.08.2013 22:28 SOURCES.txt
-rw------- 1 root root 3 31.08.2013 22:28 requires.txt
-rw------- 1 root root 425 31.08.2013 22:28 PKG-INFO
-rw------- 1 root root 1 31.08.2013 22:28 not-zip-safe
-rw------- 1 root root 1 31.08.2013 22:28 dependency_links.txt
Traceback (most recent call last):
File "/usr/lib/python3.3/site-packages/pkg_resources.py",
line 2304, in _dep_map return self.__dep_map File "/usr/lib/python3.3/site-packages/pkg_resources.py",
line 2374, in __getattr__ raise AttributeError(attr) AttributeError:
_Distribution__dep_map During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/foobar/Programming/pycharm3/helpers/packaging_tool.py",
line 115, in main do_list() File "/home/foobar/Programming/pycharm3/helpers/packaging_tool.py",
line 47, in do_list requires = ':'.join([str(x) for x in pkg.requires()]) File "/usr/lib/python3.3/site-packages/pkg_resources.py",
line 2323, in requires dm = self._dep_map File "/usr/lib/python3.3/site-packages/pkg_resources.py",
line 2308, in _dep_map for extra,reqs in split_sections(self._get_metadata(name)):
File "/usr/lib/python3.3/site-packages/pkg_resources.py",
line 2750, in split_sections for line in yield_lines(s):
File "/usr/lib/python3.3/site-packages/pkg_resources.py",
line 2009, in yield_lines for ss in strs: File "/usr/lib/python3.3/site-packages/pkg_resources.py",
line 2337, in _get_metadata for line in self.get_metadata_lines(name):
File "/usr/lib/python3.3/site-packages/pkg_resources.py",
line 1325, in get_metadata_lines return yield_lines(self.get_metadata(name))
File "/usr/lib/python3.3/site-packages/pkg_resources.py",
line 1322, in get_metadata return self._get(self._fn(self.egg_info,name)).decode("utf-8")
File "/usr/lib/python3.3/site-packages/pkg_resources.py",
line 1426, in _get stream = open(path, 'rb') PermissionError:
[Errno 13] Permission denied: '/usr/lib/python3.3/site-packages/python_dateutil-2.1-py3.3.egg/EGG-INFO/requires.txt'
bpython 0.12 /usr/lib/python3.3/site-packages/bpython-0.12-py3.3.egg
pygments Pygments 1.6 /usr/lib/python3.3/site-packages/Pygments-1.6-py3.3.egg
OpenGLContext 2.2.0a2 /usr/lib/python3.3/site-packages/OpenGLContext-2.2.0a2-py3.3.egg
Cython 0.19.1 /usr/lib/python3.3/site-packages/Cython-0.19.1-py3.3-linux-x86_64.egg
docutils 0.11 /usr/lib/python3.3/site-packages/docutils-0.11-py3.3.egg
selenium 2.35.0 /usr/lib/python3.3/site-packages/selenium-2.35.0-py3.3.egg
numpy 1.7.1 /usr/lib/python3.3/site-packages/numpy-1.7.1-py3.3-linux-x86_64.egg
matplotlib 1.3.0 /usr/lib/python3.3/site-packages/matplotlib-1.3.0-py3.3-linux-x86_64.egg
python-dateutil:tornado:pyparsing>=1.5.6:nose nose 1.3.0 /usr/lib/python3.3/site-packages/nose-1.3.0-py3.3.egg
pyparsing 2.0.1 /usr/lib/python3.3/site-packages/pyparsing-2.0.1-py3.3.egg tornado 3.1
/usr/lib/python3.3/site-packages/tornado-3.1-py3.3.egg or create new VirtualEnv

