You may need to configure a proxy server if you're having trouble cloning
or fetching from a remote repository or getting an error
like unable to access '...' Couldn't resolve host '...'.
Consider something like:
| // Invoice markup | |
| // Author: Max Kostinevich | |
| // BETA (no styles) | |
| // http://pdfmake.org/playground.html | |
| // playground requires you to assign document definition to a variable called dd | |
| // CodeSandbox Example: https://codesandbox.io/s/pdfmake-invoice-oj81y | |
| var dd = { |
| open the Python CMD | |
| >>import os | |
| >>import sys | |
| >>os.path.dirname(sys.executable) | |
| and it will show you the path |
| cd to your projetc folder | |
| run the following command | |
| pipenv install -r requirements.txt |
| Run Windows Power Shell as Administrator | |
| Run the following command in Power Shell | |
| pip install pipenv | |
| This works if python Env variable is already set |
| From the desktop, right-click My Computer and click Properties. | |
| In the System Properties window, click on the Advanced tab. | |
| In the Advanced section, click the Environment Variables button. | |
| Highlight the Path variable in the Systems Variable section and click the Edit button. If its not there create it | |
| Then add these to the Path | |
| C:\Users\ICT\AppData\Local\Programs\Python\Python37;C:\Users\ICT\AppData\Local\Programs\Python\Python37\Scripts |
| ionic config set -g proxy http://proxy.example.com:8888 |
| ionic cordova plugin add cordova-plugin-camera | |
| npm install @ionic-native/camera |
| cordova platform add android |
| in project-folder/platform/android/gradle.properties | |
| systemProp.http.proxyHost=192.168.1.3 //where this is the proxy | |
| systemProp.http.proxyPort=8080 //and this is the port | |
| systemProp.https.proxyHost=192.168.1.3 | |
| systemProp.https.proxyPort=8080 |