Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我没有对我正在使用的 Linux 服务器的 root 访问权限。
我正在尝试安装readline到我的主目录中的 Python 安装中,但构建它需要 ncurses 库。
readline
我已经构建了前缀设置为我的主目录的 ncurses,但现在我一直试图链接它以便ld -lncurses找到它。我尝试将我的导出$HOME/lib到LD_LIBRARY_PATH; 它没有帮助。
ld -lncurses
$HOME/lib
LD_LIBRARY_PATH
setup.py 是否有一个选项来指定搜索相应库的路径?
啊,想通了!
很简单: export LDFLAGS=-L/$HOME/lib
export LDFLAGS=-L/$HOME/lib
不确定是否需要: export CFLAGS=-I/$HOME/include export CPATH=-I/$HOME/include
export CFLAGS=-I/$HOME/include
export CPATH=-I/$HOME/include