Com o Python 3.4 e posterior, você pode usar o módulo ensurepip
para instalar o pip no FreeBSD e em outros lugares.
python3.4 -m ensurepip
deve instalar o pip como pip3.4.
Com o Python 3.4 e posterior, você pode usar o módulo ensurepip
para instalar o pip no FreeBSD e em outros lugares.
python3.4 -m ensurepip
deve instalar o pip como pip3.4.
Infelizmente não parece haver pip integrado em python3.4 nas portas do FreeBSD.
Então eu tive que instalar o pip como descrito aqui
O Python 3.4+ contém pip
por padrão e não precisa de nenhum pacote adicional para ser instalado.
pip included with Python
Python 2.7.9 and later (on the python2 series), and Python 3.4 and later include pip by default [1], so you may have pip already.
Python only started bundling pip with Python 3.4. For earlier versions, pip needs to be “bootstrapped” as described in the Python Packaging User Guide.
Tags python pip installation freebsd