No longer able to install pip on 2.81 #71856
Labels
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset System
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Code Documentation
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
FBX
Interest
Freestyle
Interest
Geometry Nodes
Interest
glTF
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Viewport & EEVEE
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Asset Browser Project
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Asset System
Module
Core
Module
Development Management
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Module
Viewport & EEVEE
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Severity
High
Severity
Low
Severity
Normal
Severity
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
4 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender#71856
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
System Information
Operating system: Windows 10
Graphics card: Nvidia GTX 960
Blender Version
Broken: 2.81
Worked: 2.80
Short description of error
Can't install pip anymore?
Exact steps for others to reproduce the error
In windows terminal jump into folder:
F:\Blender\blender-2.81-windows64\2.81\python\bin
and run: python.exe -m ensurepip
Results in:
On previous versions this worked fine:
This is required to install a very good GIS addon BlenderGIS which has instructions for installing GDAL and Numpy here:
https://github.com/domlysz/BlenderGIS/wiki/How-to-install-GDAL
But it requires pip is installed first.
Added subscriber: @RossEdwards
Added subscriber: @rjg
Changed status from 'Open' to: 'Resolved'
Blender 2.81 ships with pip installed. There is no need to use
ensurepip
anymore.I'm closing this ticket since the issue has been resolved.
Added subscriber: @NumesSanguis-3
@rjg What is the new correct way of installing a package through pip from within Blender 2.81+, using Python code?
The use-case: A add-on button triggering pip install for a library that's necessary in the add-on.
Previously I was doing this: https://blender.stackexchange.com/questions/139718/install-pip-and-packages-from-within-blender-os-independently
So removing the
ensurepip
part let me to the following code:Which returns 0, so at first I thought things were fine... but
import pyzmq
does not work.Looking in the terminal I see
Requirement already satisfied: pyzmq in /home/*user*/anaconda3/lib/python3.6/site-packages (17.1.2)
.Therefore, it seems like this method does not work if you have some other Python installed on your system?
How do I
pip install pyzmq
in Blender's Python from within Python code (using it in my add-on)?Using the help over at https://blender.chat/channel/python I got it to work with:
My above suggestion is actually wrong. I enabled pip by copying Blender 2.80's ensurepip. In a fresh install, trying the above instead gives:
Even though executing
./python3.7m -m pip --version
works (on Ubuntu 16.04) in the folder wherepython3.7m
can be found.You can test this by yourself when running the following commands in the Blender terminal:
@rjg Any idea how to use pip from Blender's terminal / a python script?
Running the following seems to work at first:
However, when trying to install a package, I get an EnvironmentError (with and without
sudo
):@NumesSanguis-3 You must have broken something in your previous attempts to get pip working. On a clean install of Blender you can properly install packages through subprocess, I've tested this for pyzmq. In order to see what went wrong with your install you might want to use
subprocess.check_output()
.It is very strange for me, but somehow this order worked (tried a few times with different clean Blender):
I need to run
ensurepip.bootstrap()
once, otherwise thesubprocess
call will give the error:No module named pip
.However, the above will fail with the
No such file or directory
error described in my previous post.If I restart Blender, and now run the code block above, except with the
ensurepip.bootstrap()
removed, it works?Seems that the
ensurepip.bootstrap()
somehow change the folder where pip will store the temporary downloaded file, but there is no permission to create that file? Although running Blender withsudo
gives the same result?So my final script, which works, but has to be run twice and a Blender restart in the middle:
You can find the full code here (for Blender 2.80 & 2.81+): https://github.com/NumesSanguis/Blender-ZMQ-add-on/blob/v1.1/blendzmq_ops.py#L139-L220
@NumesSanguis-3 I can reproduce this issue.
ensurepip.bootstrap()
breaks subsequent calls topip install
in subprocess because the temporary directory cannot be found. Unfortunately I was wrong about ensurepip, it is still needed on Linux since pip is only included with the Windows releases.The cause of the issue is that
ensurepip.bootstrap()
modifiesos.environ
because it's also callingpip
. It sets the environment variablePIP_REQ_TRACKER
. RemovingPIP_REQ_TRACKER
fromos.environ
before installing packages through subprocess solves the issue.Added subscriber: @jta