This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ pip install --user etsy | |
Traceback (most recent call last): | |
File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 134, in main | |
status = self.run(options, args) | |
File "/usr/lib/python2.7/dist-packages/pip/commands/install.py", line 236, in run | |
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle) | |
File "/usr/lib/python2.7/dist-packages/pip/req.py", line 1085, in prepare_files | |
url = finder.find_requirement(req_to_install, upgrade=self.upgrade) | |
File "/usr/lib/python2.7/dist-packages/pip/index.py", line 245, in find_requirement |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/perl | |
# Copyright (C) 2011 | |
# Jérémie Nikaes <[email protected]> | |
# Arnaud Lacurie <[email protected]> | |
# Claire Fousse <[email protected]> | |
# David Amouyal <[email protected]> | |
# Matthieu Moy <[email protected]> | |
# License: GPL v2 or later |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; code checking via pyflakes+flymake | |
(when (load "flymake" t) | |
(defun flymake-pyflakes-init () | |
(let* ((temp-file (flymake-init-create-temp-buffer-copy | |
'flymake-create-temp-inplace)) | |
(local-file (file-relative-name | |
temp-file | |
(file-name-directory buffer-file-name)))) | |
(list "pyflakes" (list local-file)))) |
NewerOlder