Forums

python3 -m pip install sanic ~not working need help

I wanted to play with the new sanic framework on python 3.5, this is what I got... please someone help? thanks

Exception:                                                                                                                                
Traceback (most recent call last):                                                                                                        
  File "/usr/local/lib/python3.5/dist-packages/pip/basecommand.py", line 215, in main                                                     
    status = self.run(options, args)                                                                                                      
  File "/usr/local/lib/python3.5/dist-packages/pip/commands/install.py", line 317, in run                                                 
    prefix=options.prefix_path,                                                                                                           
  File "/usr/local/lib/python3.5/dist-packages/pip/req/req_set.py", line 742, in install                                                  
    **kwargs                                                                                                                              
  File "/usr/local/lib/python3.5/dist-packages/pip/req/req_install.py", line 831, in install                                              
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix)                                                                      
  File "/usr/local/lib/python3.5/dist-packages/pip/req/req_install.py", line 1032, in move_wheel_files                                    
    isolated=self.isolated,                                                                                                               
  File "/usr/local/lib/python3.5/dist-packages/pip/wheel.py", line 346, in move_wheel_files                                               
    clobber(source, lib_dir, True)                                                                                                        
  File "/usr/local/lib/python3.5/dist-packages/pip/wheel.py", line 324, in clobber                                                        
    shutil.copyfile(srcfile, destfile)                                                                                                    
  File "/usr/lib/python3.5/shutil.py", line 115, in copyfile                                                                              
    with open(dst, 'wb') as fdst:                                                                                                         
PermissionError: [Errno 13] Permission denied: '/usr/local/lib/python3.5/dist-packages/ujson.cpython-35m-x86_64-linux-gnu.so'

You need something like:

pip3.5 install --user sanic

See the help page at: https://help.pythonanywhere.com/pages/InstallingNewModules

Jim

@jgmdavies Thank you ! Works like a charm

Good! Thanks.