Error in pip (Python3, Linux)

0

I am learning how to create distributable packages with Python, and created one and now I want to install it on my own PC with linux. Before, I was not allowed to create the setup because I did not have setuptools installed, I installed it and did the setup. Then I installed pip and put in the terminal: pip install Packagename and this appears:

Processing ./Paquetecalculos-1.0.tar.gz
Building wheels for collected packages: Paquetecalculos
  Running setup.py bdist_wheel for Paquetecalculos ... error
  Complete output from command /usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-T47Rmq-build/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/tmp2AN5hspip-wheel- --python-tag cp27:
  usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
     or: -c --help [cmd1 cmd2 ...]
     or: -c --help-commands
     or: -c cmd --help

  error: invalid command 'bdist_wheel'

  ----------------------------------------
  Failed building wheel for Paquetecalculos
  Running setup.py clean for Paquetecalculos
Failed to build Paquetecalculos
Installing collected packages: Paquetecalculos
  Running setup.py install for Paquetecalculos ... done
Successfully installed Paquetecalculos-1.0

Does anyone know what happens?

    
asked by user96431 02.09.2018 в 19:00
source

0 answers