这几天重新配置开发环境 发现之前的断点调试不能用了。特此记录下配置方式防止以后在重新配置的时候在到处查资料 系统 ubuntu12.04 1安装phpstrom 傻瓜式 执行shell文件即可 2 https://pecl.php.net/package/xdebug 下载xdebug扩展包 3 安装xdebug tar xvf 解压xdebug cd xdebug目录 phpize 如果存在多个版本 则需要自己指定phpize路径 ./configure –with-php ...
Read More »Monthly Archives: 八月 2015
python 查看包的安装位置
python -c “from distutils.sysconfig import get_python_lib; print (get_python_lib())”
Read More »