Details
-
Task
-
Resolution: Done
-
Minor - P4
-
None
-
None
-
Fully Compatible
-
v3.4, v3.2
-
TIG 2017-03-27
-
0
Description
The httplib2 package has been removed from SUSE 12, so there should no longer be a permissions issue when attempting to create a virtual environment using --system-site-packages.
# Due to an issue with how the contents of the httplib2 package are installed on SUSE 12,
|
# some files within the system's site-packages aren't world-readable. This results in a
|
# "Permission denied" error message when attempting to install the system's site-packages
|
# into the virtual environment.
|
if [ ${build_variant} == enterprise-suse12-64 ]; then
|
virtualenv ./venv
|
else
|
virtualenv --system-site-packages ./venv
|
fi
|
Attachments
Issue Links
- is related to
-
SERVER-25387 Document virtualenv workaround for SuSE 12 distros in evergreen.yml
-
- Closed
-