Category "path"

Unable to update PATH variable for pip on Windows 10

I know there are thousands of similar topics but my pip command has suddenly stopped to work and, despite all my researchs, I can't figure out why. It has been

virtualenv to path on Windows 10

I have installed virtualenv (if I type "pip list" there is virtualenv (15.1.0)) and when I try to use it throws an error: virtualenv : The term 'virtualenv

Setting up python on windows 10 pro

Have set up Python 3.5 and Python 2.7.11 yet both have not been recognized by the command prompt. Also have download pip.py, and the command prompt has not reco

How to change the Jupyter start-up folder

I tried following the instructions given on the Jupyter Notebook documentation. Unfortunately, I haven't been able to figure it out. Where exactly is this "sta

xcrun: error: active developer path ("/Applications/Xcode.app/Contents/Developer") does not exist

I'm having xcode issues when I try to use brew and git: xcrun: error: active developer path ("/Applications/Xcode.app/Contents/Developer") does not exist, u

Where does Python search for modules after installing Anaconda?

Previously, I have been using Python 2.7. If I installed a module using pip, it would place the module in /usr/local/lib/python2.7/site-packages. Then, if I wer

In git, obtain commits using git log with path

I would like to obtain the last 10 commits using git log specifying the path of my repository. I used the option -path but I have "is outside repository" error

How to reference a html template from a different directory in python flask

@app.route('/view', methods=['GET', 'POST']) def view_notifications(): posts = get_notifications() return render_template("frontend/src/view_notificatio

Python os.path.commonprefix - is there a path oriented function?

So I have this python code: print os.path.commonprefix([r'C:\root\dir',r'C:\root\dir1']) Real Result C:\root\dir Desired result C:\root Question 1 Bas

bitbake SRC_URI file://

If I have a tarball, helloworld.tar.gz in a local directory, say /home/user/tarballs/, how can I make my bitbake recipe fetch from that directory? my helloworl

How to get parameters from path in Bottle?

When i execute this url: http://domain:8081/forum?id=2&page=26 with this code: @route('/forum') def display_forum(): forum_id = request.query.id p

Path.equals behaves different on Windows and Linux

I use the following code to compare two Paths in Java: import java.nio.file.Paths; public class PathTest { public static void main(String args[]) { St

Multiprocessing, file not found

I'm using AlphaPose from GitHub and I'd like to run the script script/demo_inference.py from another script I created in AlphaPose root called run.py. In run.py

warning can't open/read file: check file path/integrity

images_per_class = 80 fixed_size = tuple((500, 500)) train_path = "dataset/train" train_labels = os.listdir(train_path) for training_name in train_

Getting the correct directory structure using Zipfile with Python

I have a directory structure that is like /level1/level2/level3/level4/level5 and in level5 I have .json files I want to replace with zipped up versions so from

How to remove dots from a filename without removing them from the extension?

I am iterating through a folder that has files of different extensions. I want to remove dots ('.') from the filename, but not the extension. If I simply do thi

How Django set path to files

In a django project, I want to open a file "file.png" (from images folder) in "worker.py". worker.py images file.png otherfile.png It works well using the te

VS Code - Drag image from Explorer pane into markdown file and drop as path

In Visual Studio Code, from the Explorer pane, how can I drag a PNG file from my images folder and drop it in place in a markdown file, so that VS Code inserts

Windows PATH to posix path conversion in bash

How can I convert a Windows dir path (say c:/libs/Qt-static) to the correct POSIX dir path (/c/libs/Qt-static) by means of standard msys features? And vice vers

Converting an absolute path to a relative path

Working in Node I need to convert my request path into a relative path so I can drop it into some templates that have a different folder structure. For example,