Questions tagged [gitpod]

Gitpod launches ready-to-code dev environments from any GitHub page.

94 questions
0
votes
2 answers

Disable cache for Docker directly in Dockerfile

I use Gitpod as my online IDE. Gitpod builds a Docker container from a user-provided Dockerfile. The user doesn't have access to the terminal which runs the docker build command and thus no flags can be passed. At the moment, my Dockerfile fails…
Edgar Derby
  • 2,543
  • 4
  • 29
  • 48
0
votes
2 answers

Python VSCode: Installed modules not recognised (closed)

Edit: It's working fine now, it seems there was just something weird going on with VSCode I am writing a discord bot in Python using Gitpod (which has VSCode Browser as its editor). I have installed Pycord 2.0 in the workspace using pip (obviously)…
user19827571
0
votes
1 answer

Gitpod with C++ and Raylib

I like to use Gitpod and use for almost all of my projects. I start learning Raylib and would like to use Gitpod to in those projects. I already tried using this template (VS Code based):…
Flavio Silva
  • 95
  • 1
  • 8
0
votes
1 answer

Since Gitpod is running a VM, is a Python venv unneeded?

As far as I understand, Gitpod creates a pod which runs a Linux server container that includes my pre-configured IDE. I am not too familiar with pods and containers, so please correct me if I'm wrong. To my understanding, a container is essentially…
0
votes
1 answer

gitpod prebuild and testing gitpod.yml

Two part question: Is my attempted use of gitpod prebuild correct? How do test my changes to .gitpod.yml - when do I expect steps to run, what output should I expect to see? My plan is to have a couple of branches in my git repository, colleagues…
djna
  • 54,992
  • 14
  • 74
  • 117
0
votes
1 answer

.pyenv/shims not available as CLI arguments to docker run

I think I am missing something fundamental about how docker handles .pyenv shims. Executables that work without issues when a container is running interactively are suddenly not available when requested as a CLI argument to docker run. For…
Artem Sokolov
  • 13,196
  • 4
  • 43
  • 74
0
votes
1 answer

How to detect Gitpod workspace in Bash script?

So, I'm tweaking my dotfiles to automatically install packages and I want to automatically detect whether the installation script is being ran in a Gitpod workspace. This is what I have at the moment: if is-executable "gp"; then echo "Gitpod…
0
votes
1 answer

When using an online IDE like gitpod, is there a way to remotely access a server?

Im currently working on a Chromebook with admin blocks on everything, including crosh and Linux dev access. I want to start a server using Express and Node.js, which is functional, but when attempting to connect using a different device, I'm stuck.…
Jace Robin
  • 13
  • 1
0
votes
2 answers

Gitpod self hosted doesn't have bitbucket provider

I have installed gitpod v2022.03.1 for AWS EKS. Everythings works fine, but in git integration page (first page), provider bitbucket is not present. There are only github and gitlab. Is there something wrong? How can I use bitbucket? Thank you
Daniele
  • 538
  • 1
  • 5
  • 17
0
votes
2 answers

Is there an alternative to pip freeze in order to keep packages up to date?

So I am setting up a Github repository with Gitpod through my Ipad. I learned I could use this command in order to easily load every requirement with the .gitpod.yml file. pip freeze > requirements.txt My question is: inside the requirements file,…
0
votes
1 answer

Why cant i edit my CSS on my Gitpod Workspace?

Does anyone have any clue why gitpod will let me edit my html side of things but my css page will not update anything when it comes to previewing the created page, I can literally delete all of my existing CSS rules and the preview of the page…
0
votes
1 answer

Cannot get "images" net::ERR_CONNECTION_REFUSED (Gitpod)

On Gitpod, my NextJS frontend is trying to fetch the list of objects which contain "product names", "prices" and "images" from my Django Rest API backend. Then, my NextJS frontend can get the list of objects which contain "product names" and…
Super Kai - Kazuya Ito
  • 22,221
  • 10
  • 124
  • 129
0
votes
0 answers

os.system is not running gcloud command in gitpod environment

I trying to run gcloud command with help of python with following command in gitpod environment where Google Cloud SDK is already installed, import os,sys print (os.system("gcloud --version")) But It is giving error that gcloud not found. I am not…
Sammlona
  • 23
  • 6
0
votes
0 answers

How can we use preinstall virtual environment from a project in Gitpod & Is it okay to put a virtual environment in a project?

I just come across a online code editing and online project display application called Gitpod, and I was playing around with it since I thought it would be really cool to have easy access to all my Github project online especially all my Python…
0
votes
2 answers

Trying to push large TensorFlow model to GitHub repo using GitHub's Large File Storage

I have a large TensorFlow model that I want to push to a GitHub repo. The file exceeds GitHub's size limit of 100MB. I am trying to use Git Large File Storage, running the following commands: brew install git-lfs git lfs track "*.zip" git lfs…
Cybernetic
  • 12,628
  • 16
  • 93
  • 132