skip to Main Content

Ubuntu – Unable to install packages with pip in VS code

I am trying to install Flask with the following command: pip install flask But pip returns: Requirement already satisfied: flask in /home/john/anaconda3/lib/python3.11/site-packages (3.0.0) Requirement already satisfied: Werkzeug>=3.0.0 in /home/john/anaconda3/lib/python3.11/site-packages (from flask) (3.0.1) Requirement already satisfied: Jinja2>=3.1.2 in /home/john/anaconda3/lib/python3.11/site-packages (from flask)…

VIEW QUESTION

How can I get a fully working 'echo' command in a Jquery terminal?

Im trying to get a echo command to echo what the user types in a JQuery termial. This is the code I have <link href="https://unpkg.com/jquery.terminal/css/jquery.terminal.min.css" rel="stylesheet" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://unpkg.com/jquery.terminal/js/jquery.terminal.min.js"></script> <script> $('body').terminal({ echo: function(...args) { this.echo(args) }, }, {…

VIEW QUESTION
Back To Top
Search