Erro na instalação de módulos do Python

1. Erro na instalação de módulos do Python

Perfil removido
removido

(usa Nenhuma)

Enviado em 23/05/2018 - 11:32h

ola
preciso instalar alguns módulos do Python mais não estol conce gindo
coloco o comando no terminal

$ pip3 install emoji

e retarna o erro

Collecting emoji
Using cached https://files.pythonhosted.org/packages/47/e7/cf76e0774b13459e61ffe16a042a35f42e292aeebba060b919c05b...
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named 'setuptools'

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-186b15f3/emoji/

por desencargo de consciência e por curiosidade tentei pesquisar no terminal sobre esse tal de "setuptools"
e me retornou

$sudo apt-cache search python3-setuptools

python3-setuptools - Python3 Distutils Enhancements
python3-setuptools-git - plugin for setuptools that enables git integration
python3-setuptools-scm - blessed package to manage your versions by scm tags for Python 3





  


2. Re: Erro na instalação de módulos do Python

edps
edps

(usa Slackware)

Enviado em 23/05/2018 - 12:50h

nameless0 escreveu:
por desencargo de consciência e por curiosidade tentei pesquisar no terminal sobre esse tal de "setuptools"
e me retornou

$sudo apt-cache search python3-setuptools

python3-setuptools - Python3 Distutils Enhancements
python3-setuptools-git - plugin for setuptools that enables git integration
python3-setuptools-scm - blessed package to manage your versions by scm tags for Python 3


E fez certo, é esse o caminho. Pesquise também por distutils (ou python-distutils-extra) e pip



3. Re: Erro na instalação de módulos do Python

Perfil removido
removido

(usa Nenhuma)

Enviado em 23/05/2018 - 12:59h

edps escreveu:

nameless0 escreveu:
por desencargo de consciência e por curiosidade tentei pesquisar no terminal sobre esse tal de "setuptools"
e me retornou

$sudo apt-cache search python3-setuptools

python3-setuptools - Python3 Distutils Enhancements
python3-setuptools-git - plugin for setuptools that enables git integration
python3-setuptools-scm - blessed package to manage your versions by scm tags for Python 3


E fez certo, é esse o caminho. Pesquise também por distutils (ou python-distutils-extra) e pip


certo ok
agora da tando esse erro

Collecting emoji
Using cached https://files.pythonhosted.org/packages/47/e7/cf76e0774b13459e61ffe16a042a35f42e292aeebba060b919c05b...
Installing collected packages: emoji
Running setup.py install for emoji ... error
Complete output from command /usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-pydng5cl/emoji/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-ctw8rmjl/install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/emoji
copying emoji/core.py -> build/lib/emoji
copying emoji/unicode_codes.py -> build/lib/emoji
copying emoji/__init__.py -> build/lib/emoji
running egg_info
writing top-level names to emoji.egg-info/top_level.txt
writing emoji.egg-info/PKG-INFO
writing requirements to emoji.egg-info/requires.txt
writing dependency_links to emoji.egg-info/dependency_links.txt
warning: manifest_maker: standard file '-c' not found

reading manifest file 'emoji.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'emoji.egg-info/SOURCES.txt'
running install_lib
creating /usr/local/lib/python3.5/dist-packages/emoji
error: could not create '/usr/local/lib/python3.5/dist-packages/emoji': Permission denied

----------------------------------------
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-pydng5cl/emoji/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-ctw8rmjl/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-pydng5cl/emoji/

instalei o "setuptools" o "pip" e o "python-distutils-extra"




4. Re: Erro na instalação de módulos do Python

edps
edps

(usa Slackware)

Enviado em 23/05/2018 - 13:23h

Tente assim (estou supondo que é esse módulo: https://github.com/carpedm20/emoji ):

$ wget https://files.pythonhosted.org/packages/source/e/emoji/emoji-0.5.0.tar.gz
$ tar xvf emoji-0.5.0.tar.gz
$ cd emoji-0.5.0

$ python setup.py build
$ sudo python setup.py install
ou
$ python3 setup.py build
$ sudo python3 setup.py install



5. Re: Erro na instalação de módulos do Python

Perfil removido
removido

(usa Nenhuma)

Enviado em 23/05/2018 - 13:55h

edps escreveu:

Tente assim (estou supondo que é esse módulo: https://github.com/carpedm20/emoji ):

$ wget https://files.pythonhosted.org/packages/source/e/emoji/emoji-0.5.0.tar.gz
$ tar xvf emoji-0.5.0.tar.gz
$ cd emoji-0.5.0

$ python setup.py build
$ sudo python setup.py install
ou
$ python3 setup.py build
$ sudo python3 setup.py install


quando coloco
$python setup.py build

da o erro

Traceback (most recent call last):
File "setup.py", line 13, in <module>
from setuptools import setup
ModuleNotFoundError: No module named 'setuptools'

o mesmo erro acontece pro outro comanda



6. Re: Erro na instalação de módulos do Python

edps
edps

(usa Slackware)

Enviado em 23/05/2018 - 14:05h

nameless0 escreveu:

edps escreveu:

Tente assim (estou supondo que é esse módulo: https://github.com/carpedm20/emoji ):

$ wget https://files.pythonhosted.org/packages/source/e/emoji/emoji-0.5.0.tar.gz
$ tar xvf emoji-0.5.0.tar.gz
$ cd emoji-0.5.0

$ python setup.py build
$ sudo python setup.py install
ou
$ python3 setup.py build
$ sudo python3 setup.py install


quando coloco
$python setup.py build

da o erro

Traceback (most recent call last):
File "setup.py", line 13, in <module>
from setuptools import setup
ModuleNotFoundError: No module named 'setuptools'

o mesmo erro acontece pro outro comanda


Eu não sei se o seu sistema é o Linux Mint mesmo, e eu não uso esse sistema. Mas você pode deixar o python mais completo ai:

# apt update
# apt install python-all python3-all python-all-dev python3-all-dev


Aqui rodando no Solus OS, onde não instalei nada de python funciona:


$ wget https://files.pythonhosted.org/packages/source/e/emoji/emoji-0.5.0.tar.gz
--2018-05-23 13:19:02-- https://files.pythonhosted.org/packages/source/e/emoji/emoji-0.5.0.tar.gz
Resolvendo files.pythonhosted.org... 151.101.1.63, 151.101.65.63, 151.101.129.63, ...
Conectando-se a files.pythonhosted.org|151.101.1.63|:443... conectado.
A requisição HTTP foi enviada, aguardando resposta... 302 Found
Localização: https://files.pythonhosted.org/packages/47/e7/cf76e0774b13459e61ffe16a042a35f42e292aeebba060b919c05b... [redirecionando]
--2018-05-23 13:19:02-- https://files.pythonhosted.org/packages/47/e7/cf76e0774b13459e61ffe16a042a35f42e292aeebba060b919c05b...
Reaproveitando a conexão existente para files.pythonhosted.org:443.
A requisição HTTP foi enviada, aguardando resposta... 200 OK
Tamanho: 41302 (40K) [binary/octet-stream]
Salvando em: “emoji-0.5.0.tar.gz”

emoji-0.5.0.tar.gz 100%[===================>] 40,33K --.-KB/s em 0,008s

2018-05-23 13:19:02 (5,24 MB/s) - “emoji-0.5.0.tar.gz” salvo [41302/41302]

$ tar xvf emoji-0.5.0.tar.gz
emoji-0.5.0/
emoji-0.5.0/CHANGES.md
emoji-0.5.0/emoji/
emoji-0.5.0/emoji/__init__.py
emoji-0.5.0/emoji/core.py
emoji-0.5.0/emoji/unicode_codes.py
emoji-0.5.0/emoji.egg-info/
emoji-0.5.0/emoji.egg-info/dependency_links.txt
emoji-0.5.0/emoji.egg-info/PKG-INFO
emoji-0.5.0/emoji.egg-info/requires.txt
emoji-0.5.0/emoji.egg-info/SOURCES.txt
emoji-0.5.0/emoji.egg-info/top_level.txt
emoji-0.5.0/emoji.egg-info/zip-safe
emoji-0.5.0/LICENSE.txt
emoji-0.5.0/MANIFEST.in
emoji-0.5.0/PKG-INFO
emoji-0.5.0/README.rst
emoji-0.5.0/setup.cfg
emoji-0.5.0/setup.py
emoji-0.5.0/tests/
emoji-0.5.0/tests/__init__.py
emoji-0.5.0/tests/test_core.py
emoji-0.5.0/tests/test_unicode_codes.py

$ cd emoji-0.5.0
$ python3 setup.py build
running build
running build_py
creating build
creating build/lib
creating build/lib/emoji
copying emoji/core.py -> build/lib/emoji
copying emoji/__init__.py -> build/lib/emoji
copying emoji/unicode_codes.py -> build/lib/emoji
running egg_info
writing emoji.egg-info/PKG-INFO
writing dependency_links to emoji.egg-info/dependency_links.txt
writing requirements to emoji.egg-info/requires.txt
writing top-level names to emoji.egg-info/top_level.txt
reading manifest file 'emoji.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'emoji.egg-info/SOURCES.txt'



7. Re: Erro na instalação de módulos do Python

Perfil removido
removido

(usa Nenhuma)

Enviado em 23/05/2018 - 15:21h

edps escreveu:

nameless0 escreveu:

edps escreveu:

Tente assim (estou supondo que é esse módulo: https://github.com/carpedm20/emoji ):

$ wget https://files.pythonhosted.org/packages/source/e/emoji/emoji-0.5.0.tar.gz
$ tar xvf emoji-0.5.0.tar.gz
$ cd emoji-0.5.0

$ python setup.py build
$ sudo python setup.py install
ou
$ python3 setup.py build
$ sudo python3 setup.py install


quando coloco
$python setup.py build

da o erro

Traceback (most recent call last):
File "setup.py", line 13, in <module>
from setuptools import setup
ModuleNotFoundError: No module named 'setuptools'

o mesmo erro acontece pro outro comanda


Eu não sei se o seu sistema é o Linux Mint mesmo, e eu não uso esse sistema. Mas você pode deixar o python mais completo ai:

# apt update
# apt install python-all python3-all python-all-dev python3-all-dev


Aqui rodando no Solus OS, onde não instalei nada de python funciona:


$ wget https://files.pythonhosted.org/packages/source/e/emoji/emoji-0.5.0.tar.gz
--2018-05-23 13:19:02-- https://files.pythonhosted.org/packages/source/e/emoji/emoji-0.5.0.tar.gz
Resolvendo files.pythonhosted.org... 151.101.1.63, 151.101.65.63, 151.101.129.63, ...
Conectando-se a files.pythonhosted.org|151.101.1.63|:443... conectado.
A requisição HTTP foi enviada, aguardando resposta... 302 Found
Localização: https://files.pythonhosted.org/packages/47/e7/cf76e0774b13459e61ffe16a042a35f42e292aeebba060b919c05b... [redirecionando]
--2018-05-23 13:19:02-- https://files.pythonhosted.org/packages/47/e7/cf76e0774b13459e61ffe16a042a35f42e292aeebba060b919c05b...
Reaproveitando a conexão existente para files.pythonhosted.org:443.
A requisição HTTP foi enviada, aguardando resposta... 200 OK
Tamanho: 41302 (40K) [binary/octet-stream]
Salvando em: “emoji-0.5.0.tar.gz”

emoji-0.5.0.tar.gz 100%[===================>] 40,33K --.-KB/s em 0,008s

2018-05-23 13:19:02 (5,24 MB/s) - “emoji-0.5.0.tar.gz” salvo [41302/41302]

$ tar xvf emoji-0.5.0.tar.gz
emoji-0.5.0/
emoji-0.5.0/CHANGES.md
emoji-0.5.0/emoji/
emoji-0.5.0/emoji/__init__.py
emoji-0.5.0/emoji/core.py
emoji-0.5.0/emoji/unicode_codes.py
emoji-0.5.0/emoji.egg-info/
emoji-0.5.0/emoji.egg-info/dependency_links.txt
emoji-0.5.0/emoji.egg-info/PKG-INFO
emoji-0.5.0/emoji.egg-info/requires.txt
emoji-0.5.0/emoji.egg-info/SOURCES.txt
emoji-0.5.0/emoji.egg-info/top_level.txt
emoji-0.5.0/emoji.egg-info/zip-safe
emoji-0.5.0/LICENSE.txt
emoji-0.5.0/MANIFEST.in
emoji-0.5.0/PKG-INFO
emoji-0.5.0/README.rst
emoji-0.5.0/setup.cfg
emoji-0.5.0/setup.py
emoji-0.5.0/tests/
emoji-0.5.0/tests/__init__.py
emoji-0.5.0/tests/test_core.py
emoji-0.5.0/tests/test_unicode_codes.py

$ cd emoji-0.5.0
$ python3 setup.py build
running build
running build_py
creating build
creating build/lib
creating build/lib/emoji
copying emoji/core.py -> build/lib/emoji
copying emoji/__init__.py -> build/lib/emoji
copying emoji/unicode_codes.py -> build/lib/emoji
running egg_info
writing emoji.egg-info/PKG-INFO
writing dependency_links to emoji.egg-info/dependency_links.txt
writing requirements to emoji.egg-info/requires.txt
writing top-level names to emoji.egg-info/top_level.txt
reading manifest file 'emoji.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'emoji.egg-info/SOURCES.txt'


instalei mais mesmo assim não funciona
eu acho que é erro no linux mint
você acha se eu migrar para o ubuntu esse problema desaparece
obrigado






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts