ubuntu+clion+python配置

记录一下ubuntu+clion+python配置:

1、新建一个c++工程。

2、找到file->settings->Python Interpreter

点击小齿轮,选择Base interpreter,点击OK,如下:

ubuntu+clion+python配置_第1张图片

点击右侧“+”,添加需要使用的模块,如numpy、matplotlib、opencv-python,进行安装。

ubuntu+clion+python配置_第2张图片

3、cmakelists添加:

# 添加Python.h头文件路径
include_directories(/usr/include/python2.7)

# 添加python动态链接库文件目录
link_directories(/usr/lib/python2.7/config-x86_64-  linux-gnu)

target_link_libraries(GoodCodeEddy libpython2.7.so)

 

4、添加一个python文件,如hello.py

5、在运行的左侧点击Edit Configurations,添加一个新的配置,选择python类型,并命名配置为hello。

添加script path和Enviroment variables,如下:

ubuntu+clion+python配置_第3张图片

添加完成后即可运行。

你可能感兴趣的:(ubuntu,clion,python)