Forums

cant install pyMsql

I have tried and tried to get pymsql installed and all i get is errors

04:19 ~/PyWaves (master)$ pip3.6 install PyMySQL
Collecting PyMySQL
Using cached PyMySQL-0.8.0-py2.py3-none-any.whl
Installing collected packages: PyMySQL
Exception:
Traceback (most recent call last):
 File "/usr/local/lib/python3.6/dist-packages/pip/basecommand.py", line 215, in main
  status = self.run(options, args)
 File "/usr/local/lib/python3.6/dist-packages/pip/commands/install.py", line 342, in run
prefix=options.prefix_path,
 File "/usr/local/lib/python3.6/dist-packages/pip/req/req_set.py", line 784, in install
**kwargs
 File "/usr/local/lib/python3.6/dist-packages/pip/req/req_install.py", line 851, in install
self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
 File "/usr/local/lib/python3.6/dist-packages/pip/req/req_install.py", line 1064, in move_wheel_files
isolated=self.isolated,
File "/usr/local/lib/python3.6/dist-packages/pip/wheel.py", line 345, in move_wheel_files
clobber(source, lib_dir, True)
File "/usr/local/lib/python3.6/dist-packages/pip/wheel.py", line 316, in clobber
ensure_dir(destdir)
File "/usr/local/lib/python3.6/dist-packages/pip/utils/__init__.py", line 83, in ensure_dir
os.makedirs(path)
 File "/usr/lib/python3.6/os.py", line 220, in makedirs
mkdir(name, mode)
PermissionError: [Errno 13] Permission denied: '/usr/local/lib/python3.6/dist-packages/PyMySQL-0.8.0.dist-info'

i have also tried pip3.4 or just plain pip

Check out our help pages on this

Thank you so much!!

i had read thru the forum and the help and missed that

it worked

wait it said it was installed but im still getting this error

    import pymysql
 ImportError: No module named pymysql

which shows up

19:19 ~/ (master)$ pip3.6 install --user pyMysql
Requirement already satisfied: pyMysql in /home/talonPower/.local/lib/python3.6/site-packages

i see that i am on python 2.7.6 so i tried this:

19:28 ~ $ pip2.7 install --user pyMsql
    Collecting pyMsql
    Could not find a version that satisfies the requirement pyMsql (from versions: )
No matching distribution found for pyMsql

and still nothing...

and just like you notice you mispelled it :P

Sounds like you worked it out, then :-) For anyone else hitting the same problem, here's the exact command to install PyMySQL for Python 2.7:

pip2.7 install --user PyMySQL