Coder Social home page Coder Social logo

Comments (20)

Sispheor avatar Sispheor commented on May 23, 2024 1

Omg. I can't believe it.
You just made my day. Thank you.
You are a software engineer student? Really?

from kalliope.

Sispheor avatar Sispheor commented on May 23, 2024

Dev branch?

from kalliope.

gabrielcolon32 avatar gabrielcolon32 commented on May 23, 2024

Yes, I was told to clone the project from there because it might have been fixed. But it seems that there is still an issue.

Context: https://gitter.im/kalliope-project/Lobby

from kalliope.

Sispheor avatar Sispheor commented on May 23, 2024

You have reinstalled after checking out the branch?

from kalliope.

gabrielcolon32 avatar gabrielcolon32 commented on May 23, 2024

I just cloned the branch and installed it

gabriel@gabriel-VirtualBox:~/Documents/Kalliope$ git clone https://github.com/kalliope-project/kalliope.git
Cloning into 'kalliope'...
remote: Enumerating objects: 11852, done.
remote: Counting objects: 100% (435/435), done.
remote: Compressing objects: 100% (161/161), done.
remote: Total 11852 (delta 193), reused 357 (delta 144), pack-reused 11417
Receiving objects: 100% (11852/11852), 20.35 MiB | 988.00 KiB/s, done.
Resolving deltas: 100% (7618/7618), done.
gabriel@gabriel-VirtualBox:~/Documents/Kalliope$ cd kalliope/
gabriel@gabriel-VirtualBox:~/Documents/Kalliope/kalliope$ virtualenv venv -p /usr/bin/python3

created virtual environment CPython3.8.10.final.0-64 in 1049ms
  creator CPython3Posix(dest=/home/gabriel/Documents/Kalliope/kalliope/venv, clear=False, no_vcs_ignore=False, global=False)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/gabriel/.local/share/virtualenv)
    added seed packages: pip==21.3.1, setuptools==58.3.0, wheel==0.37.0
  activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator
gabriel@gabriel-VirtualBox:~/Documents/Kalliope/kalliope$ 
gabriel@gabriel-VirtualBox:~/Documents/Kalliope/kalliope$ source venv/bin/activate
(venv) gabriel@gabriel-VirtualBox:~/Documents/Kalliope/kalliope$ python3 setup.py install
running install

...

from kalliope.

Sispheor avatar Sispheor commented on May 23, 2024

Delete your venv and reinstall

from kalliope.

gabrielcolon32 avatar gabrielcolon32 commented on May 23, 2024

Without the venv or just do the same process?

from kalliope.

Sispheor avatar Sispheor commented on May 23, 2024

Create a new venv

from kalliope.

gabrielcolon32 avatar gabrielcolon32 commented on May 23, 2024

Installed /home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/itsdangerous-2.0.1-py3.8.egg
error: Werkzeug 0.16.1 is installed but Werkzeug>=2.0 is required by {'Flask', 'flask'}

from kalliope.

gabrielcolon32 avatar gabrielcolon32 commented on May 23, 2024

Traceback (most recent call last):
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 583, in _build_master
ws.require(requires)
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 900, in require
needed = self.resolve(parse_requirements(requirements))
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 791, in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.ContextualVersionConflict: (Werkzeug 0.16.1 (/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages), Requirement.parse('Werkzeug>=2.0'), {'flask', 'Flask'})

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/home/gabriel/Documents/Kalliope/kalliope/venv/bin/kalliope", line 6, in
from pkg_resources import load_entry_point
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 3252, in
def _initialize_master_working_set():
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 3235, in _call_aside
f(*args, **kwargs)
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 3264, in _initialize_master_working_set
working_set = WorkingSet._build_master()
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 585, in _build_master
return cls._build_from_requirements(requires)
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 598, in _build_from_requirements
dists = ws.resolve(reqs, Environment())
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 791, in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.ContextualVersionConflict: (Werkzeug 0.16.1 (/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages), Requirement.parse('Werkzeug>=2.0'), {'flask', 'Flask'})

from kalliope.

Sispheor avatar Sispheor commented on May 23, 2024

Are you sure you are on the dev branch? Because the version of this package is >= 2.0 in the requirements file.

from kalliope.

gabrielcolon32 avatar gabrielcolon32 commented on May 23, 2024

If I install the 2.0 version I get this error:

Traceback (most recent call last):
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 583, in _build_master
ws.require(requires)
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 900, in require
needed = self.resolve(parse_requirements(requirements))
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 791, in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.ContextualVersionConflict: (Werkzeug 2.0.0 (/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages), Requirement.parse('Werkzeug==0.16.1'), {'kalliope'})

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/home/gabriel/Documents/Kalliope/kalliope/venv/bin/kalliope", line 6, in
from pkg_resources import load_entry_point
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 3252, in
def _initialize_master_working_set():
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 3235, in _call_aside
f(*args, **kwargs)
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 3264, in _initialize_master_working_set
working_set = WorkingSet._build_master()
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 585, in _build_master
return cls._build_from_requirements(requires)
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 598, in _build_from_requirements
dists = ws.resolve(reqs, Environment())
File "/home/gabriel/Documents/Kalliope/kalliope/venv/lib/python3.8/site-packages/pkg_resources/init.py", line 786, in resolve
raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'Werkzeug==0.16.1' distribution was not found and is required by kalliope

from kalliope.

Sispheor avatar Sispheor commented on May 23, 2024

Werkzeug==0.16.1
You are still on the master branch...

from kalliope.

gabrielcolon32 avatar gabrielcolon32 commented on May 23, 2024

image

from kalliope.

Sispheor avatar Sispheor commented on May 23, 2024

This is a screenshot.
Not related to your actual repo on your workstation.
How did you switch to the dev branch?

from kalliope.

Sispheor avatar Sispheor commented on May 23, 2024

Omg, you've set "dev" on GitHub and then clone? Right?

from kalliope.

gabrielcolon32 avatar gabrielcolon32 commented on May 23, 2024

Oh 0_0

Whoops

from kalliope.

gabrielcolon32 avatar gabrielcolon32 commented on May 23, 2024

I'm still learning... I thought I could just clone a branch. They didn't teach me this so..

from kalliope.

gabrielcolon32 avatar gabrielcolon32 commented on May 23, 2024

Thanks for making fun of it instead of helping...

from kalliope.

Sispheor avatar Sispheor commented on May 23, 2024

I think I already went far in this support.
You started by coming here with a "hey! Is this project fill my needs?" Without reading a single line of the main readme.
I still spent time to dig into your issue to finally find out that the problem was your usage of git. So now go google to find out how to switch branch.
I really recommend you to take time to learn git and GitHub usage before submitting issues on repositories. Some project owner may not be that patient with you.
Good luck young Padawan!

from kalliope.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.