Jean-Christophe Manciot

Results 58 comments of Jean-Christophe Manciot

On Ubuntu 17.10, a workaround is to **uninstall docker python module with pip and install python-docker with apt**: ``` # pip uninstall docker ... # apt install python-docker ... #...

On Ubuntu 17.10, a much better workaround is to use a **virtualenv**. ``` # virtualenv awx-build-virtualenv Running virtualenv with interpreter /usr/bin/python2 New python executable in awx-build-virtualenv/bin/python2 Also creating executable in...

On Ubuntu 17.10, **outside a virtualenv**, it is possible to import docker pip module with **downgraded requests** pip module (thanks to this [thread](https://github.com/requests/requests/issues/4160)): ``` # pip freeze | grep requests...

1. **First setup** SAMSUNG SSD on USB 3.0: ``` Bus 004 Device 002: ID 174c:55aa ... bcdUSB 3.00 ``` WD on USB 2.0: ``` Bus 003 Device 002: ID 1058:0827....

@dkopecek The following attributes change or appear or disappear when switching from USB 2 to 3: **SAMSUNG**: ``` bcdUSB bMaxPacketSize0 wTotalLength wMaxPacketSize bMaxBurst MaxStreams Device Status: U1 U2 ``` **Western...

I believe I may have found another potential explanation: some archives are made on Debian with fsarchiver built in that specific environment (bullseye - same fsarchiver commit); - if I...

@111pontes 1. I'm not sure what you mean by orthogonal, but the data **must** be formatted in YAML for ansible existing modules to be able to read them. 2. The...

@grossmj Thanks, except that the following command installs into /usr/lib/python3.9/site-packages instead of /usr/lib/python3/dist-packages ``` python3 -m pip install . --root="../gns3-gui-build" --prefix=/usr ``` I tried to add the following option but...

@grossmj Unfortunately, despite what is stated in '[Installing Python Modules (Legacy version) Doc](https://docs.python.org/3/install/index.html#custom-installation)' and '[pip install doc](https://pip.pypa.io/en/stable/cli/pip_install/#per-requirement-overrides)', all --install-option seem unsupported. With build-requirements.txt: ``` . --install-option="--install-purelib=/usr/lib/python3/dist-packages" ``` ``` python3 -m...

@grossmj I haven't yet; I have also posted this on [stackoverflow](https://stackoverflow.com/questions/70541692/pip3-install-does-not-seem-to-support-install-option-anymore), but there is no progress yet.