Build, install and run yoink in python 2.7









up vote
0
down vote

favorite












I found this really cool project called "yoink", which is particularly useful when extraction of published 2D data is necessary:



https://github.com/mrterry/yoink



https://www.youtube.com/watch?v=ywHqIEv3xXg&feature=youtu.be&t=1938



Unfortunately this project is no longer maintained and I am trying to figure out how to install this under python 2.7. Any help is greatly appreciated.










share|improve this question























  • Can you install it using pip? It's on pypi
    – snakecharmerb
    Nov 10 at 8:34










  • good point. I did pip install yoink and the package was found. I got the following error though:$ pip install yoink Collecting yoink Downloading https://files.pythonhosted.org/packages/0e/c9/f0d48c07afc632240e836506e40143fbd87a38ed8b01b8d0f113a637875c/yoink-0.3.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmp/pip-install-r8eq0_ea/yoink/setup.py", line 1, in <module> import distribute_setup ModuleNotFoundError: No module named 'distribute_setup'
    – anfho
    Nov 12 at 19:32














up vote
0
down vote

favorite












I found this really cool project called "yoink", which is particularly useful when extraction of published 2D data is necessary:



https://github.com/mrterry/yoink



https://www.youtube.com/watch?v=ywHqIEv3xXg&feature=youtu.be&t=1938



Unfortunately this project is no longer maintained and I am trying to figure out how to install this under python 2.7. Any help is greatly appreciated.










share|improve this question























  • Can you install it using pip? It's on pypi
    – snakecharmerb
    Nov 10 at 8:34










  • good point. I did pip install yoink and the package was found. I got the following error though:$ pip install yoink Collecting yoink Downloading https://files.pythonhosted.org/packages/0e/c9/f0d48c07afc632240e836506e40143fbd87a38ed8b01b8d0f113a637875c/yoink-0.3.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmp/pip-install-r8eq0_ea/yoink/setup.py", line 1, in <module> import distribute_setup ModuleNotFoundError: No module named 'distribute_setup'
    – anfho
    Nov 12 at 19:32












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I found this really cool project called "yoink", which is particularly useful when extraction of published 2D data is necessary:



https://github.com/mrterry/yoink



https://www.youtube.com/watch?v=ywHqIEv3xXg&feature=youtu.be&t=1938



Unfortunately this project is no longer maintained and I am trying to figure out how to install this under python 2.7. Any help is greatly appreciated.










share|improve this question















I found this really cool project called "yoink", which is particularly useful when extraction of published 2D data is necessary:



https://github.com/mrterry/yoink



https://www.youtube.com/watch?v=ywHqIEv3xXg&feature=youtu.be&t=1938



Unfortunately this project is no longer maintained and I am trying to figure out how to install this under python 2.7. Any help is greatly appreciated.







python






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 9 at 17:16

























asked Nov 9 at 17:02









anfho

368




368











  • Can you install it using pip? It's on pypi
    – snakecharmerb
    Nov 10 at 8:34










  • good point. I did pip install yoink and the package was found. I got the following error though:$ pip install yoink Collecting yoink Downloading https://files.pythonhosted.org/packages/0e/c9/f0d48c07afc632240e836506e40143fbd87a38ed8b01b8d0f113a637875c/yoink-0.3.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmp/pip-install-r8eq0_ea/yoink/setup.py", line 1, in <module> import distribute_setup ModuleNotFoundError: No module named 'distribute_setup'
    – anfho
    Nov 12 at 19:32
















  • Can you install it using pip? It's on pypi
    – snakecharmerb
    Nov 10 at 8:34










  • good point. I did pip install yoink and the package was found. I got the following error though:$ pip install yoink Collecting yoink Downloading https://files.pythonhosted.org/packages/0e/c9/f0d48c07afc632240e836506e40143fbd87a38ed8b01b8d0f113a637875c/yoink-0.3.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmp/pip-install-r8eq0_ea/yoink/setup.py", line 1, in <module> import distribute_setup ModuleNotFoundError: No module named 'distribute_setup'
    – anfho
    Nov 12 at 19:32















Can you install it using pip? It's on pypi
– snakecharmerb
Nov 10 at 8:34




Can you install it using pip? It's on pypi
– snakecharmerb
Nov 10 at 8:34












good point. I did pip install yoink and the package was found. I got the following error though:$ pip install yoink Collecting yoink Downloading https://files.pythonhosted.org/packages/0e/c9/f0d48c07afc632240e836506e40143fbd87a38ed8b01b8d0f113a637875c/yoink-0.3.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmp/pip-install-r8eq0_ea/yoink/setup.py", line 1, in <module> import distribute_setup ModuleNotFoundError: No module named 'distribute_setup'
– anfho
Nov 12 at 19:32




good point. I did pip install yoink and the package was found. I got the following error though:$ pip install yoink Collecting yoink Downloading https://files.pythonhosted.org/packages/0e/c9/f0d48c07afc632240e836506e40143fbd87a38ed8b01b8d0f113a637875c/yoink-0.3.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmp/pip-install-r8eq0_ea/yoink/setup.py", line 1, in <module> import distribute_setup ModuleNotFoundError: No module named 'distribute_setup'
– anfho
Nov 12 at 19:32












1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










$ python setup.py install


does the trick! :)






share|improve this answer




















  • It even installed under Python 3.7
    – anfho
    yesterday










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53230249%2fbuild-install-and-run-yoink-in-python-2-7%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote



accepted










$ python setup.py install


does the trick! :)






share|improve this answer




















  • It even installed under Python 3.7
    – anfho
    yesterday














up vote
0
down vote



accepted










$ python setup.py install


does the trick! :)






share|improve this answer




















  • It even installed under Python 3.7
    – anfho
    yesterday












up vote
0
down vote



accepted







up vote
0
down vote



accepted






$ python setup.py install


does the trick! :)






share|improve this answer












$ python setup.py install


does the trick! :)







share|improve this answer












share|improve this answer



share|improve this answer










answered yesterday









anfho

368




368











  • It even installed under Python 3.7
    – anfho
    yesterday
















  • It even installed under Python 3.7
    – anfho
    yesterday















It even installed under Python 3.7
– anfho
yesterday




It even installed under Python 3.7
– anfho
yesterday

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53230249%2fbuild-install-and-run-yoink-in-python-2-7%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kleinkühnau

Makov (Slowakei)

Deutsches Schauspielhaus