Python 3.3 source code setup: modules were not found: _lzma _sqlite3 _tkinter

前端 未结 4 1887
梦毁少年i
梦毁少年i 2021-02-03 11:02

I am trying to set up the compiled version of CPython, on Ubuntu 12.04, by following the python developer guide. Even after installing the dependent packages lzma and sqlite3,

4条回答
  •  故里飘歌
    2021-02-03 11:42

    I was able to build Python 3.3 without modifying setup.py after installing the following packages on my Ubuntu Precise box.

    build-essential 
    zlib1g-dev 
    libbz2-dev 
    libncurses5-dev 
    libreadline6-dev 
    libsqlite3-dev 
    libssl-dev 
    libgdbm-dev
    liblzma-dev
    tk8.5-dev
    

提交回复
热议问题