Closed amilworks closed 2 years ago
I think this is not a serious issue but when I see bisque on my local browser it shows an error but the site comes up and all :
Error Requested resource does not exist: /services
I cant push local update to the repo, remote: Permission to UCSB-VRL/bisqueUCSB.git denied to ASMIftekhar.
Getting this error after changing TG version and running the make file:
Step 7/23 : RUN wget -q https://bitbucket.org/dimin/bioimageconvert/downloads/$IMGCNV.tar.gz && tar xf $IMGCNV.tar.gz && mv $IMGCNV/imgcnv /usr/bin && mv $IMGCNV/libimgcnv.so /usr/lib/x86_64-linux-gnu/ && rm -rf $IMGCNV && apt-get install -y --no-install-recommends libswscale-ffmpeg3 libfftw3-3 libgdcm2.6 libavcodec-ffmpeg56 libavformat-ffmpeg56 libavutil-ffmpeg54 libhdf5-cpp-11 ---> Running in 8b6c936f4981 The command '/bin/sh -c wget -q https://bitbucket.org/dimin/bioimageconvert/downloads/$IMGCNV.tar.gz && tar xf $IMGCNV.tar.gz && mv $IMGCNV/imgcnv /usr/bin && mv $IMGCNV/libimgcnv.so /usr/lib/x86_64-linux-gnu/ && rm -rf $IMGCNV && apt-get install -y --no-install-recommends libswscale-ffmpeg3 libfftw3-3 libgdcm2.6 libavcodec-ffmpeg56 libavformat-ffmpeg56 libavutil-ffmpeg54 libhdf5-cpp-11' returned a non-zero code: 8 Makefile:9: recipe for target 'bisque05-caffe-xenial' failed make: *** [bisque05-caffe-xenial] Error 8
Changed TurboGear from 2.1.5 to 2.2.1. Make got well but running the container gives me the following error:
So I changed web0b==1.0.8 to 1.1.1 and build again. The built went well but after running the docker container I got this error. This means something got broken due to the update of web0b. Any way to track this?
So its saying that the Turbogears version you have installed needs WebOb to be upgraded. Nice work!
Requirement.parse('WebOb==1.1.1'), set(['TurboGears2']))
Can you try upgrading the requests
package?
To which version?
This comment is for @mcever @FeiX-OvO and @ivanfarevalo. You first need to build the container by running: make bisque05-caffe-xenial Then docker run command should be: docker run -itp 8080:8080 --name bqdev-tg2 amilworks/bisque05-caffe-xenial:flour-tg2.2
So I tried to find a specific/relevant version, but couldn't find anything that was definitive like "Use this version for WebOb==1.1.1". So my suggestion is naive, let's try the latest since it supports Python 2.7
. We will try this extreme, then we can try the opposite extreme of the next version bump from our current one.
pip install requests==2.25.0
Didnt work, it broke some other package name MonekeyPatch. Are you sure Web0b is not working because of requests. Then may be we can try randomly different requests versions.
Yeah, so you're right. WebOb actually doesn't have any dependencies, from what I can see, except for the Python Standard library. That's pretty crazy. This will probably require a little more digging because from the looks of it, nothing was Raised to say "upgrade package X to v2.x". Here are the changes from the commit log for turbogears2==2.2
. I highlighted one in bold that might be the reason for the /services
issue but I am not completely sure.
@satish1901 Do you have any ideas?
Stale issue message
TurboGears 2.2.1
This is the second upgrade in the process. If you have any questions, tag @amilworks on here. Current Version:
TurboGears2==2.2.0
Upgrade Version:TurboGears2==2.2.1
As you are going through, check off what Step you completed to make it easier for us to help, and for you to feel accomplished.
Getting Started
Step 1. Clone the Repo
GOAL
cd tg-upgrade
and you should see a folder structure like thisStep 2. Verify Everything Works
GOAL
You have two choices to verify that the repo is working.
Option 1. Pull the Latest Docker Build (Recommended)
The repo is rebuilt and pushed automatically after a successful push/merge on GitHub. Download the latest image by running the following command:
You can run this image to verify BisQue is working and able to run locally on your system by running:
You should see BisQue on http://localhost:8080/ in your browser. If not, paste the logs below and we will take a look.
Option 2. Build the Image
Building the image from scratch is what you will end up doing throughout the upgrade process. Luckily, we automated it to where you run a
Makefile
.If you
vim Makefile
, you will see it's a series of basic commands. I suggest you Edit this file and--tag
the image something different and update the version you are upgrading instead ofamilworks/bisque05-caffe-xenial:flour-tg2.2
. You can leave it but it's kind of long. Once the build is done, verify that BisQue comes up on your local system just as above:You should see BisQue on http://localhost:8080/ in your browser. If not, paste both the Build and Run Logs below and we will take a look.
Step 3. Make Changes/Break Stuff
GOAL
TurboGears2==2.2.1
, fix problems that arise, document changes.Create a new branch Creating a new branch will enable you to make changes, nuke your own branch over and over again, and maintain a clean copy of the original branch when you need to start fresh for the millionth time.
Open
source/requirements.txt
with your favorite editor (hopefully Vim). Change the version to the one you are assigned, and save the file.Here is the link to the line you will update.
Push to GitHub You made changes and you want to have version control. Push your new branch and changes to GitHub by running:
Step 4. Build and Run!
GOAL
Once you made your changes, make sure you
cd ..
out ofsource/
and are back to the tree view displayed above. You should see a file calledMakefile
. You can Edit this file as mentioned inOption 2.
or simply run the following command to build the image with your updated TurboGears2.While its building, make sure that there are no errors during the
pip installs
. Typically errors are skipped over in favor of a successful build. I know, right?Next, once the build is finished, run the image and verify BisQue comes up on your local system:
If everything is successful, push your branch to GitHub if you have not already, file a pull request, and pat yourself on the back. Job well done. We will review it and test it on our production-like setup and give feedback if any issues arise.
Post Upgrade
Use this issue to document any issues you faced during the upgrade process. Log dumps can be thrown here as well. Try to use the code syntax for large blocks of code so we can easily read through it. Otherwise, go crazy.