简体   繁体   中英

How to install python3.7-dev on Ubuntu 20.04?

I need to use Python3.7 for a project, but Ubuntu 20.04 doesn't have python3.7-dev in the apt repositories. I've installed Python3.7 from a tarball, but it doesn't install the headers. I noticed in the build directory that libpython3.7m.a exists, but I'm looking for libpython3.7.so . I don't see any options to build shared versus static library, and I don't where that file goes, I was hoping the build script would take care of that.

Does anyone know the recommended way to install python headers from older versions?

Try this once and let me know if it didn't solve

sudo apt-get install python3-dev
sudo apt-get install python3.7-dev

You can install it for any version of python. by sudo apt-get install python3.x-dev

maybe you can use libpython3.7m-pic.a instead, which acts like libpython3.7.so to some extent

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM