Here is my pipeline script (I am developing a primarily node based app, with a bit of Python)
image: node:4.4.7 pipelines: default: - step: script: - python --version - pip install -U pymysql - ...
The output is as follows
python --version Python 2.7.9 pip install -U pymysql bash: pip: command not found
since it's a node specific image, it may have a broken and/or minimal python install.
I'm not familiar with python, but I'd try installing pip.
Alternatively, you could run that image locally and look around without having to push commits to test. Once you have docker installed you can try:
docker run -it --volume=`pwd`:/repo --workdir="/repo" --memory=1024m node:4.4.7 /bin/bash
Yeah, done that and for some reason pip just isn't present. Installed it manually and it's all working now.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.