Closed
Description
I use pdm at my ubuntu x86_64 platform.
pdm was installed wit command curl -sSL https://pdm.fming.dev/dev/install-pdm.py | python3 -
Also, I have at this computer python, compiled for other i686 platform.
I use the next sequence of command to build venv in my project, that included psutil 5.9.2 package.
pdm venv create -w venv --with-pip /usr/local/xxx/i686-pc-linux-gnu/usr/bin/python3.9
pdm sync
In a result I got psutil for platform x86_64 that is different with python platform in venv.
If I'll use pip for instal psutil with this command
pdm run pip install psutil==5.9.2
I receive installed psutil for platform i686 as I expected.
Is it possible to update pdm's resolving system for taking into account the python architecture in venv?